@agendize/design-system
Version:
Agendize web design system
13 lines • 334 B
TypeScript
export interface SegmentedButtonProps {
options: SegmentedButtonOption[];
titleOnlyOnSelected?: boolean;
}
export interface SegmentedButtonOption {
id: string;
ariaLabel: string;
icon?: string;
tooltip?: string;
title?: string;
active?: boolean;
}
//# sourceMappingURL=SegmentedButtonViewModel.d.ts.map