UNPKG

@amsterdam/bmi-component-library

Version:

A React component library based on ASC and Material-UI aimed at repurposing and sharing components across BMI projects

12 lines 406 B
import type { ComponentProps, FC } from 'react'; import Creatable from 'react-select/creatable'; type CreatableProps = ComponentProps<typeof Creatable>; export type Props = { label?: string; createLabel?: string; error?: boolean; zIndexMenu?: number; } & CreatableProps; declare const CreatableSelect: FC<Props>; export default CreatableSelect; //# sourceMappingURL=CreatableSelect.d.ts.map