import {
Example,
ExampleWrapper,
} from "@/registry/bases/base/components/example"
import {
Field,
FieldDescription,
FieldLabel,
} from "@/registry/bases/base/ui/field"
import {
NativeSelect,
NativeSelectOptGroup,
NativeSelectOption,
} from "@/registry/bases/base/ui/native-select"
export default function NativeSelectExample() {
return (
)
}
function NativeSelectBasic() {
return (
Select a fruitAppleBananaBlueberry
Grapes
Pineapple
)
}
function NativeSelectWithGroups() {
return (
Select a foodAppleBananaBlueberryCarrotBroccoliSpinach
)
}
function NativeSelectSizes() {
return (
Select a fruitAppleBananaBlueberrySelect a fruitAppleBananaBlueberry
)
}
function NativeSelectWithField() {
return (
CountrySelect a countryUnited StatesUnited KingdomCanadaAustraliaSelect your country of residence.
)
}
function NativeSelectDisabled() {
return (
DisabledAppleBananaBlueberry
)
}
function NativeSelectInvalid() {
return (
Error stateAppleBananaBlueberry
)
}