UNPKG

@brizy/ui

Version:
10 lines (9 loc) 251 B
import { Choice } from "../SelectEditable/types"; import { FCC } from "../types"; export type Props = { value: string; choices: Choice[]; placeholder?: string; onChange: (v: string) => void; }; export declare const Select: FCC<Props>;