Multi-select button chips for compact option sets like sizes. Works controlled or uncontrolled.
The import and the props worth knowing about, in one place.
import { FilterChips } from "@/components/beste/component/filter-chips";
<FilterChips
label="Size"
defaultValue={["m"]}
onChange={(value) => console.log("selected:", value)}
options={[
{ label: "S", value: "s" },
{ label: "M", value: "m" },
{ label: "L", value: "l" },
]}
/>Turn the props on the right; the snippet under them is what you would write to get what you see.
import { FilterChips } from "@/components/beste/component/filter-chips";
<FilterChips
label="Size"
defaultValue={["m","l"]}
options={[{"label":"XS","value":"xs"},{"label":"S","value":"s"},{"label":"M","value":"m"},{"label":"L","value":"l"},{"label":"XL","value":"xl"},{"label":"XXL","value":"xxl"}]}
/>Every one of these is in the component already. They are listed because a props table cannot mention a gesture, so nothing else on this page can tell you they exist.
| Tab | Move between the boxes — each is its own control, not one list with an inner cursor. |
|---|---|
| Space | Tick or untick the focused one. |
Read from the component's own type, so this cannot drift from what it accepts.
| Prop | Type | Default | Description |
|---|---|---|---|
label | string | — | Optional group heading rendered above the chips |
options | FilterChipsOption[] | — | |
value | string[] | — | Controlled selection; omit to let the component manage its own state |
defaultValue | string[] | — | Initial selection when uncontrolled |
onChange | (value: string[]) => void | — | |
className | string | — |
Multi-select checkbox list with optional result counts. Works controlled or uncontrolled, designed for filter sidebars and toolbars.
Dropdown with checkbox rows and a selection-count badge. Keeps many-option filters compact in toolbars where a checkbox list would not fit.
Searchable dropdown for very long option lists like brands. Type to narrow options, select one or many, and see result counts inline.
Single-select segmented control built on Tabs for mutually exclusive choices like gender or condition. Clicking the active segment clears the selection.