import { Field, FieldDescription, FieldGroup, FieldLabel, } from "@/examples/base/ui/field" import { NativeSelect, NativeSelectOptGroup, NativeSelectOption, } from "@/examples/base/ui/native-select" import { Select } from "@/examples/base/ui/select" export function NativeSelectFields() { return ( Basic Native Select Choose an option Option 1 Option 2 Option 3 Country Select your country United States United Kingdom Canada Select the country where you currently reside. Timezone Choose your local timezone for accurate scheduling. Select timezone UTC Eastern Time Pacific Time Grouped Options Select a region United States Canada Mexico United Kingdom France Germany Native select with grouped options using optgroup. Invalid Native Select This field has an error Option 1 Option 2 Option 3 This field contains validation errors. Disabled Field Cannot select Option 1 Option 2 Option 3 This field is currently disabled. ) }