import { Field, FieldDescription, FieldGroup, FieldLabel, } from "@/examples/base/ui/field" import { Select, SelectContent, SelectGroup, SelectItem, SelectTrigger, SelectValue, } from "@/examples/base/ui/select" export function SelectFields() { const basicItems = [ { label: "Choose an option", value: null }, { label: "Option 1", value: "option1" }, { label: "Option 2", value: "option2" }, { label: "Option 3", value: "option3" }, ] const countryItems = [ { label: "Select your country", value: null }, { label: "United States", value: "us" }, { label: "United Kingdom", value: "uk" }, { label: "Canada", value: "ca" }, ] const timezoneItems = [ { label: "Select timezone", value: null }, { label: "UTC", value: "utc" }, { label: "Eastern Time", value: "est" }, { label: "Pacific Time", value: "pst" }, ] const invalidItems = [ { label: "This field has an error", value: null }, { label: "Option 1", value: "option1" }, { label: "Option 2", value: "option2" }, { label: "Option 3", value: "option3" }, ] const disabledItems = [ { label: "Cannot select", value: null }, { label: "Option 1", value: "option1" }, { label: "Option 2", value: "option2" }, { label: "Option 3", value: "option3" }, ] return ( Basic Select Country Select the country where you currently reside. Timezone Choose your local timezone for accurate scheduling. Invalid Select This field contains validation errors. Disabled Field This field is currently disabled. ) }