UNPKG

@dabapps/roe

Version:

A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.

19 lines (18 loc) 546 B
import * as React from 'react'; import { OptionalComponentPropAndHTMLAttributes } from '../../types'; export declare type ButtonProps = { /** * Set the style `display: block;`. */ block?: boolean; /** * Make the button large */ large?: boolean; /** * Make the button small */ small?: boolean; } & React.ButtonHTMLAttributes<HTMLElement> & OptionalComponentPropAndHTMLAttributes; declare const _default: React.MemoExoticComponent<(props: ButtonProps) => JSX.Element>; export default _default;