Copy to clipboard
Installation
Copy to clipboard
npx bearnie add select
npx bearnie add select
bunx bearnie add select
bunx bearnie add select
pnpm dlx bearnie add select
pnpm dlx bearnie add select
yarn dlx bearnie add select
yarn dlx bearnie add select
Copy to clipboard
import Select from "@/components/ui/select/Select.astro";
import SelectOption from "@/components/ui/select/SelectOption.astro";
Usage
import { Select } from "@/components/ui/select"
<Select placeholder="Select an option">
<option value="one">Option One</option>
<option value="two">Option Two</option>
</Select>
Examples
With label
Copy to clipboard
Disabled
Copy to clipboard
Anatomy
Select- The dropdown container with native options
Props
Select
| Prop | Type | Default | Description |
|---|---|---|---|
| id | string | - | Element ID for label association |
| name | string | - | Form field name |
| placeholder | string | - | Placeholder option text |
| disabled | boolean | false | Disables the select |
| required | boolean | false | Makes selection required |
| class | string | - | Additional CSS classes |