import { Primitive, type PrimitiveProps } from "@seed-design/react-primitive"; import { Drawer } from "@seed-design/react-drawer"; import { bottomSheetHandle } from "@seed-design/css/recipes/bottom-sheet-handle"; import React from "react"; import clsx from "clsx"; export interface BottomSheetHandleProps extends PrimitiveProps, React.HTMLAttributes {} export const BottomSheetHandle = React.forwardRef( ({ className, ...props }, ref) => { const classNames = bottomSheetHandle(); return ( ); }, ); BottomSheetHandle.displayName = "BottomSheetHandle";