Filled
A softer trigger for dense settings panels.
examples/select-filled.tsx
1import {2 IconBolt,3 IconBuildingSkyscraper,4 IconRocket,5} from "@tabler/icons-react";6import { Select } from "@/components/wensity/select";78export function SelectFilled() {9 return (10 <Select11 variant="filled"12 label="Plan"13 defaultValue="team"14 options={[15 {16 value: "free",17 label: "Free",18 description: "Prototype with public examples.",19 leading: <IconRocket stroke={1.75} />,20 },21 {22 value: "pro",23 label: "Pro",24 description: "Use source files in production.",25 leading: <IconBolt stroke={1.75} />,26 },27 {28 value: "team",29 label: "Team",30 description: "Seats, shared billing, and API tokens.",31 leading: <IconBuildingSkyscraper stroke={1.75} />,32 },33 ]}34 />35 );36}