UNPKG

495 BTypeScriptView Raw
1import React from 'react';
2import { ButtonAppearances } from '../types';
3export declare type ButtonGroupProps = {
4 /** The appearance to apply to all buttons. */
5 appearance?: ButtonAppearances;
6};
7export declare const groupItemStyles: {
8 flex: string;
9 display: string;
10 '& + &::before': {
11 content: string;
12 display: string;
13 width: string;
14 };
15};
16export default class ButtonGroup extends React.Component<ButtonGroupProps> {
17 render(): JSX.Element;
18}