DH
David Hernandez
Select - Copy this React, Tailwind Component to your project
## 3. Select Component Prompt ```markdown # Select Component Design Specification ## Overview Create a robust, accessible select/dropdown component with advanced selection capabilities. ## Props Interface ```typescript interface SelectProps<T = any> { options: Array<{ value: T; label: string; disabled?: boolean; }>; value?: T; onChange: (value: T) => void; placeholder?: string; multiple?: boolean; searchable?: boolean; disabled?: boolean; error?: string; }
Prompt
