UNPKG

@plurid/plurid-ui-components-react

Version:

Plurid User Interface Components for React

24 lines (23 loc) 730 B
import React from 'react'; import { Theme } from '@plurid/plurid-themes'; export interface PluridSelectProperties { selectables: string[]; atChange: (event: React.ChangeEvent<HTMLInputElement>) => void; theme?: Theme; level?: number; devisible?: boolean; round?: boolean; width?: string | number; } /** * @param selectables `string[]` * @param atChange `(event: React.ChangeEvent<HTMLInputElement>) => void` * * @param theme optional - `Theme` * @param level optional - `number` * @param devisible optional - `boolean` * @param round optional - `boolean` * @param width optional - `string | number` */ declare const PluridSelect: React.FC<PluridSelectProperties>; export default PluridSelect;