UNPKG

@conductionnl/nl-design-system

Version:

NL design system components created by Conduction

20 lines (19 loc) 522 B
import * as React from "react"; import "../../style/selectInput.css"; interface SelectInputProps { options: Array<Partial<Record<"value" | "name" | "id" | "selected", any>>>; name: string; nameOverride?: string; value?: string; data?: string; id: string; required?: boolean; onChange?: any; disabled?: boolean; } /** * This component generates a select input. * @returns Jsx of the generated form. */ export declare const SelectInputComponent: React.FC<SelectInputProps>; export {};