Toggle Filter

Switch rows for boolean product flags like on-sale or in-stock. Multi-select, works controlled or uncontrolled.

Deals

Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.

Import & use
import { FilterToggle } from "@/components/beste/component/filter-toggle";

<FilterToggle
  label="Deals"
  defaultValue={["sale"]}
  onChange={(value) => console.log("enabled:", value)}
  options={[
    { label: "On sale", value: "sale" },
    { label: "New arrivals", value: "new" },
  ]}
/>

More Filter components

View all Filter

Category

24
18
9
12

Checkbox Filter

filter-checkbox

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

Size

Multiselect Filter

filter-multiselect

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

Size

Chips Filter

filter-chips

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

Gender

Segmented Filter

filter-segmented

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

Category

Select Filter

filter-select

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

42
24
10
8
38
12

Tree Filter

filter-tree

Hierarchical checkbox tree for nested categories with expand/collapse rows. Checking a parent checks its whole subtree, and partially selected parents turn indeterminate.