We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd2204f commit 36cf999Copy full SHA for 36cf999
src/index.tsx
@@ -5,7 +5,10 @@ import { BottomSheet as _BottomSheet } from './BottomSheet'
5
import type { Props, RefHandles, SpringEvent } from './types'
6
import { useLayoutEffect } from './hooks'
7
8
-export type { RefHandles as BottomSheetRef } from './types'
+export type {
9
+ RefHandles as BottomSheetRef,
10
+ Props as BottomSheetProps,
11
+} from './types'
12
13
// Because SSR is annoying to deal with, and all the million complaints about window, navigator and dom elenents!
14
export const BottomSheet = forwardRef<RefHandles, Props>(function BottomSheet(
0 commit comments