UNPKG

reablocks

Version:
12 lines (11 loc) 351 B
export interface ButtonGroupContextProps { /** * Style variant of the buttons. */ variant?: 'filled' | 'outline' | 'text' | string; /** * The size variation of the buttons. */ size?: 'small' | 'medium' | 'large' | string; } export declare const ButtonGroupContext: import('react').Context<ButtonGroupContextProps>;