UNPKG

@spark-ui/dropdown

Version:

Displays a list of options for the user to pick from—triggered by a button. Differs from Select in that it offers multiple select and its list is not native.

11 lines (10 loc) • 265 B
import { Ref } from 'react'; interface DividerProps { className?: string; ref?: Ref<HTMLDivElement>; } export declare const Divider: { ({ className, ref: forwardedRef }: DividerProps): import("react").JSX.Element; displayName: string; }; export {};