← All components

Select

Native-feeling selects for forms and filters.

Example

import {
  Select,
  SelectContent,
  SelectItem,
  SelectTrigger,
  SelectValue,
} from "matcha-ui";

<Select defaultValue="pro">
  <SelectTrigger className="max-w-xs">
    <SelectValue placeholder="Plan" />
  </SelectTrigger>
  <SelectContent>
    <SelectItem value="free">Free</SelectItem>
    <SelectItem value="pro">Pro</SelectItem>
  </SelectContent>
</Select>