UNPKG

rharuow-ds

Version:

Modern React Design System with 8 components: Button, Input (with password support), Textarea, Select, AsyncSelect, MultiSelect, MultiAsyncSelect, and RadioGroup. Full React Hook Form integration, Tailwind CSS styling, and CSS Variables for theme customiz

15 lines (14 loc) 470 B
import * as React from "react"; export interface MultiSelectOption { label: string; value: string; } export interface MultiSelectProps extends React.SelectHTMLAttributes<HTMLDivElement> { name: string; label?: string; options: MultiSelectOption[]; containerClassName?: string; isClearable?: boolean; } declare const MultiSelect: React.ForwardRefExoticComponent<MultiSelectProps & React.RefAttributes<HTMLDivElement>>; export { MultiSelect };