ds-smart-ui
Version:
Smart UI v1.0.5 — A production-ready React component library by PT Praisindo Teknologi. Covers inputs, navigation, data display, feedback, and layout with a unified design system, semantic Typography tokens, and full Storybook documentation.
14 lines (13 loc) • 492 B
TypeScript
export type FilterChipColor = "neutral" | "primary" | "secondary" | "info" | "success" | "warning" | "danger" | "light" | "dark";
export type FilterChipRounded = "sm" | "md" | "lg" | "full";
export type FilterChipProps = {
id: string;
leftLabel: string;
valueLabel: string;
onRemove?: (id: string) => void;
color?: FilterChipColor;
rounded?: FilterChipRounded;
className?: string;
};
declare const FilterChip: React.FC<FilterChipProps>;
export default FilterChip;