sate-lib
Version:
A lightweight and modular React component library designed for modern web interfaces. **SATE Lib** powers the [sate.menu](https://sate.menu) platform with reusable, scalable, and themeable UI components.
22 lines • 690 B
TypeScript
import { type BadgeProps } from "../badge/badge";
import { type IconName } from "../icon/icon";
type Mode = "single" | "multiple";
type Size = "medium" | "small";
interface Option {
value: string;
label: string;
icon?: IconName;
badge?: BadgeProps;
disabled?: boolean;
}
interface FilterChipGroupProps {
options: Option[];
selected?: string[];
onChange?: (selected: string[]) => void;
mode?: Mode;
size?: Size;
className?: string;
}
export declare function FilterChipGroup({ options, selected, onChange, mode, size, className, }: FilterChipGroupProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=filter-chip.d.ts.map