UNPKG

@atlaskit/button

Version:

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

12 lines (11 loc) 317 B
/** @jsx jsx */ import React from 'react'; interface Props { followsIcon: boolean; spacing: string; children?: React.ReactNode; isLoading?: boolean; testId?: string; } declare const _default: ({ children, followsIcon, spacing, isLoading, ...rest }: Props) => JSX.Element; export default _default;