UNPKG

norma-library

Version:

Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.

16 lines (15 loc) 328 B
export interface Option { value: string | number; label: string; } export interface MultiSelectProps { className?: string; label?: string; onChange: Function; placeholder?: string; disabled?: boolean; options: Option[]; value: Option; isSearchable?: boolean; isClearable?: boolean; }