import { HTMLAttributes, ReactChild } from 'react'
import { Color } from './global'
export interface ButtonProps extends HTMLAttributes {
children?: ReactChild
disabled?: boolean
size?: 'small' | 'medium' | 'large'
secondary?: boolean
color?: Color
}