Product Logo

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 select
  • hint?: string - Optional hint text
  • errorMessage?: string - Error message to display
  • Extends all standard HTML select element props