UNPKG

spartan-ui

Version:

React component library that focusses on getting the basics right leaving the design up to you

10 lines (9 loc) 296 B
import { FunctionComponent } from 'react'; import { CommonProps } from '../../types'; interface ButtonProps extends CommonProps { active?: boolean; type?: 'submit' | 'button'; disabled?: boolean; } declare const Button: FunctionComponent<ButtonProps>; export default Button;