import { Example, ExampleWrapper, } from "@/registry/bases/base/components/example" import { Button } from "@/registry/bases/base/ui/button" import { Field, FieldDescription, FieldGroup, FieldLabel, } from "@/registry/bases/base/ui/field" import { Input } from "@/registry/bases/base/ui/input" import { NativeSelect, NativeSelectOption, } from "@/registry/bases/base/ui/native-select" import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/registry/bases/base/ui/select" export default function InputExample() { return ( ) } function InputBasic() { return ( ) } function InputInvalid() { return ( ) } function InputWithLabel() { return ( Email ) } function InputWithDescription() { return ( Username Choose a unique username for your account. ) } function InputDisabled() { return ( Email ) } function InputTypes() { return ( Password Phone URL Search Number Date Time File ) } function InputWithSelect() { return ( USD EUR GBP ) } function InputWithButton() { return ( Search ) } function InputWithNativeSelect() { return ( +1 +44 +46 ) } function InputForm() { return ( Name Email We'll never share your email with anyone. Phone Country United States United Kingdom Canada Address Cancel Submit ) }