Components
ReUI Native Select with the first 6 official ReUI examples, preserved from the MIT-licensed source registry.

import {
Field,
FieldDescription,
FieldLabel,
} from "@/components/ui/reui-native-select-utils/field"
import {
NativeSelect,
NativeSelectOption,
} from "@/components/ui/reui-native-select"
export default function Pattern() {
return (
<Field className="w-full max-w-xs">
<FieldLabel htmlFor="native-select-country">Country</FieldLabel>
<NativeSelect id="native-select-country">
<NativeSelectOption value="">Select a country</NativeSelectOption>
<NativeSelectOption value="us">United States</NativeSelectOption>
<NativeSelectOption value="uk">United Kingdom</NativeSelectOption>
<NativeSelectOption value="ca">Canada</NativeSelectOption>
</NativeSelect>
<FieldDescription>Select your country of residence.</FieldDescription>
</Field>
)
}



