Color Swatch Filter

Multi-select color circles for color filtering. Each option paints its own CSS color and stays accessible via screen-reader labels.

Color

Installation

Adds the component and everything it depends on to your project.

npx shadcn add https://ui.beste.co/component/r-base/filter-swatch

New here? Read the installation guide.

Usage

The import and the props worth knowing about, in one place.

import { FilterSwatch } from "@/components/beste/component/filter-swatch";

<FilterSwatch
  label="Color"
  defaultValue={["black"]}
  onChange={(value) => console.log("selected:", value)}
  options={[
    { label: "Black", value: "black", swatch: "#18181b" },
    { label: "Blue", value: "blue", swatch: "#2563eb" },
  ]}
/>

Playground

Turn the props on the right; the snippet under them is what you would write to get what you see.

Color

Usage
import { FilterSwatch } from "@/components/beste/component/filter-swatch";

<FilterSwatch
  label="Color"
  defaultValue={["black"]}
  options={[{"label":"Black","value":"black","swatch":"#18181b"},{"label":"White","value":"white","swatch":"#fafafa"},{"label":"Blue","value":"blue","swatch":"#2563eb"},{"label":"Red","value":"red","swatch":"#dc2626"},{"label":"Green","value":"green","swatch":"#16a34a"}]}
/>

Keyboard and gestures

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.

TabMove between the boxes — each is its own control, not one list with an inner cursor.
SpaceTick or untick the focused one.

Props

Read from the component's own type, so this cannot drift from what it accepts.

PropTypeDefaultDescription
labelstringOptional group heading rendered above the swatches
optionsFilterSwatchOption[]
valuestring[]Controlled selection; omit to let the component manage its own state
defaultValuestring[]Initial selection when uncontrolled
onChange(value: string[]) => void
classNamestring

More Filter components

View all Filter

Size

Multiselect Filter

Dropdown with checkbox rows and a selection-count badge. Keeps many-option filters compact in toolbars where a checkbox list would not fit.

Category

Select Filter

Single-select dropdown for long option lists that would crowd a sidebar. Supports a clear item, result counts, and a disabled state for dependent filters.

Category

24
18
9
12

Checkbox Filter

Multi-select checkbox list with optional result counts. Works controlled or uncontrolled, designed for filter sidebars and toolbars.

Gender

Segmented Filter

Single-select segmented control built on Tabs for mutually exclusive choices like gender or condition. Clicking the active segment clears the selection.

Brand

Combobox Filter

Searchable dropdown for very long option lists like brands. Type to narrow options, select one or many, and see result counts inline.

Size

Chips Filter

Multi-select button chips for compact option sets like sizes. Works controlled or uncontrolled.