diff --git a/package.json b/package.json index b0ec9f4..ce8229b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bbodek-ui", - "version": "0.0.286", + "version": "0.0.287", "type": "module", "author": "Bbodek", "license": "MIT", diff --git a/src/core/components/BottomSheet/index.tsx b/src/core/components/BottomSheet/index.tsx index 6e702ca..756b8bb 100644 --- a/src/core/components/BottomSheet/index.tsx +++ b/src/core/components/BottomSheet/index.tsx @@ -20,12 +20,12 @@ const BottomSheet = forwardRef( useCloseBtn = false, useClickOutsideEvent = true, rounded = BOTTOM_SHEET_ROUNDED_VARIANTS['ROUNDED_12'], + isFullScreen = false, ...props }: PropsWithChildren, ref: React.Ref, ) => { const { target, className, ...rest } = props; - const CloseIcon = ; return ( -
+
{useCloseBtn ? ( , Omit, 'title'> { useCloseBtn?: boolean; + isFullScreen?: boolean; rounded?: ButtonBottomSheetRoundedTypes; }