Skip to Content

Select

Displays a list of options for the user to pick from—triggered by a button.

Usage

import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from '@abbyyproduct/ui/components/select';
<Select> <SelectTrigger className="w-[180px]"> <SelectValue placeholder="Theme" /> </SelectTrigger> <SelectContent> <SelectItem value="light">Light</SelectItem> <SelectItem value="dark">Dark</SelectItem> <SelectItem value="system">System</SelectItem> </SelectContent> </Select>

Examples

Default

Scrollable

Last updated on