UNPKG

brightyui

Version:

Brighty UI library

12 lines (11 loc) 276 B
import { FC, ReactNode } from 'react'; interface ISelectboxProps { value: string; placeholder: string; disabled?: boolean; icon?: ReactNode; onClick: () => void; error?: string; } declare const Selectbox: FC<ISelectboxProps>; export default Selectbox;