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.

12 lines (11 loc) • 304 B
import { ReactNode, Ref } from 'react'; interface GroupProps { children: ReactNode; className?: string; ref?: Ref<HTMLDivElement>; } export declare const Group: { ({ children, ref: forwardedRef, ...props }: GroupProps): import("react").JSX.Element; displayName: string; }; export {};