# Number

<ks-form-field type="number" label="Age" />

# Min/Max Value

You can control the minimum and maximum values using the min and max attributes.

<ks-form-field
    type="number"
    min="5"
    max="10"
    label="Pick a number between 5 and 10">
</ks-form-field>

# Step

You can control the increments in which a user selects using the step attribute.

<ks-form-field
    type="number"
    step="5"
    label="Quantity"
    help-text="These are bundled in packs of 5">
</ks-form-field>

# Usage

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