Select 04
Select 04 is a React and Tailwind CSS form component from Bund UI, licensed MIT. Copy it and paste it into your project.
Bund UI
MIT
forms
What it is
Select 04 is a React and Tailwind CSS form component from Bund UI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
No packages beyond the project baseline
Licence
This component comes from Bund UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Select 04
import { Badge } from "@/components/ui/badge";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue
} from "@/components/ui/select";
export default function SelectDemo() {
return (
<Select defaultValue="3">
<SelectTrigger className="w-[200px]">
<span className="inline-flex items-center space-x-2">
Status: <SelectValue placeholder="Select framework" />
</span>
</SelectTrigger>
<SelectContent>
<SelectItem value="1">
<Badge variant="outline">In Progress</Badge>
</SelectItem>
<SelectItem value="2">
<Badge variant="outline">Completed</Badge>
</SelectItem>
<SelectItem value="3">
<Badge variant="outline">Pending</Badge>
</SelectItem>
<SelectItem value="4">
<Badge variant="destructive">Cancelled</Badge>
</SelectItem>
<SelectItem value="5">
<Badge variant="destructive">Rejected</Badge>
</SelectItem>
</SelectContent>
</Select>
);
}