# Select

Setting the type property to select allows you nest a list of options within the form field component to provide the user available options.

<ks-form-field label="Options" type="select">
    <option value="" selected>Select an option</option>
    <option value="1">Option 1</option>
    <option value="2">Option 2</option>
    <option value="3">Option 3</option>
</ks-form-field>

# Usage

For more information on how to use the form field component and it's available configurations, check out the documentation.