@moderntribe/wme-ui
Version:
Components and hooks to build the best UX/UI admin wizards
11 lines • 317 B
TypeScript
export interface PillType {
label: string;
active: boolean;
}
export interface WmePillGroupProps {
label?: string;
pills: PillType[];
onSelect: (selectedPills: PillType[]) => void;
}
export default function PillGroup(props: WmePillGroupProps): JSX.Element;
//# sourceMappingURL=pill-group.d.ts.map