@teamsparta/stack-bottom-sheet
Version:
stack bottom sheet
10 lines (7 loc) • 439 B
text/typescript
import * as react from 'react';
import { ComponentPropsWithoutRef } from 'react';
import { Drawer } from 'vaul';
interface BottomSheetCloseButtonProps extends Omit<ComponentPropsWithoutRef<typeof Drawer.Close>, "children"> {
}
declare const BottomSheetCloseButton: react.ForwardRefExoticComponent<BottomSheetCloseButtonProps & react.RefAttributes<HTMLButtonElement>>;
export { BottomSheetCloseButton, type BottomSheetCloseButtonProps };