UNPKG

@cbinsights/fds

Version:
9 lines (8 loc) 255 B
export interface IndicatorProps { /** Text inside the button */ label: string; /** Controls size display */ size?: 'xs' | 's'; } declare const Indicator: ({ label, size, ...rest }: IndicatorProps) => JSX.Element; export default Indicator;