reablocks
Version:
Component library for React
12 lines (11 loc) • 351 B
TypeScript
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>;