Select
Dropdown selection component with label and error support.
Beispiel:
Current status of the project
import { Select } from '@document-writing-tools/kernux-react';
<Select label="Country">
<option value="">Choose a country</option>
<option value="de">Germany</option>
<option value="us">United States</option>
</Select>Props:
label: string- Required label for the selecthint?: string- Optional hint texterrorMessage?: string- Error message to display- Extends all standard HTML select element props