Skip to content

Commit

Permalink
fix: add children to containerComponent type
Browse files Browse the repository at this point in the history
  • Loading branch information
Nodonisko committed Oct 14, 2024
1 parent fab8cb6 commit 01f3fac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/bottomSheetModal/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ export interface BottomSheetModalProps
* @type React.ComponentType
* @default undefined
*/
containerComponent?: React.FC;
containerComponent?: React.FC<{
children: React.ReactNode;
}>;

// callbacks
/**
Expand Down

0 comments on commit 01f3fac

Please sign in to comment.