@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) • 355 B
TypeScript
import { ReactNode, Ref } from 'react';
export interface ItemIndicatorProps {
children?: ReactNode;
className?: string;
label?: string;
ref?: Ref<HTMLSpanElement>;
}
export declare const ItemIndicator: {
({ className, children, label, ref: forwardedRef, }: ItemIndicatorProps): import("react").JSX.Element;
displayName: string;
};