mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-28 23:24:13 +00:00
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import {
|
|
Field,
|
|
FieldDescription,
|
|
FieldLabel,
|
|
} from "@/styles/base-nova/ui/field"
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectGroup,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/styles/base-nova/ui/select"
|
|
|
|
const items = [
|
|
{ label: "Choose department", value: null },
|
|
{ label: "Engineering", value: "engineering" },
|
|
{ label: "Design", value: "design" },
|
|
{ label: "Marketing", value: "marketing" },
|
|
{ label: "Sales", value: "sales" },
|
|
{ label: "Customer Support", value: "support" },
|
|
{ label: "Human Resources", value: "hr" },
|
|
{ label: "Finance", value: "finance" },
|
|
{ label: "Operations", value: "operations" },
|
|
]
|
|
|
|
export default function FieldSelect() {
|
|
return (
|
|
<Field className="w-full max-w-xs">
|
|
<FieldLabel>Department</FieldLabel>
|
|
<Select items={items}>
|
|
<SelectTrigger>
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectGroup>
|
|
{items.map((item) => (
|
|
<SelectItem key={item.value} value={item.value}>
|
|
{item.label}
|
|
</SelectItem>
|
|
))}
|
|
</SelectGroup>
|
|
</SelectContent>
|
|
</Select>
|
|
<FieldDescription>
|
|
Select your department or area of work.
|
|
</FieldDescription>
|
|
</Field>
|
|
)
|
|
}
|