UNPKG

@atlaskit/button

Version:

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

10 lines (9 loc) 277 B
/// <reference types="react" /> interface Props { icon: React.ReactChild; isLoading?: boolean; isOnlyChild: boolean; spacing: string; } declare const _default: ({ spacing, icon, isOnlyChild, isLoading, ...rest }: Props) => JSX.Element; export default _default;