UNPKG

reablocks

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