UNPKG

@atlaskit/button

Version:

A button triggers an event or action. They let users know what will happen next.

20 lines (19 loc) 511 B
/** @jsx jsx */ import React from 'react'; import { ButtonAppearances } from '../types'; export declare type ButtonGroupProps = { /** The appearance to apply to all buttons. */ appearance?: ButtonAppearances; }; export declare const groupItemStyles: { flex: string; display: string; '& + &::before': { content: string; display: string; width: string; }; }; export default class ButtonGroup extends React.Component<ButtonGroupProps> { render(): JSX.Element; }