UNPKG

@atlaskit/button

Version:

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

11 lines (10 loc) 273 B
/** @jsx jsx */ import React from 'react'; interface Props { children: React.ReactNode; fit: boolean; onClick?: React.MouseEventHandler; testId?: string; } declare const _default: ({ fit, children, ...rest }: Props) => JSX.Element; export default _default;