UNPKG

stone-kit

Version:
15 lines (13 loc) 610 B
import { TOption } from './Select.types.ts'; export interface IOption { option: TOption; isOptionCategory?: boolean; disabledOptions: TOption[]; selectedOptions: TOption[]; clickableOptions?: (string | undefined)[]; handleOptionClick: (option: TOption) => void; sizeIcon?: string; addClassName?: string; isDisabledNotClickable?: boolean; } export declare const Option: ({ option, selectedOptions, disabledOptions, clickableOptions, handleOptionClick, isOptionCategory, sizeIcon, isDisabledNotClickable, addClassName, }: IOption) => import("react/jsx-runtime").JSX.Element;