UNPKG

@glodon-aiot/react-components

Version:

aiot react components

11 lines (10 loc) 271 B
import { default as React } from 'react'; interface ButtonProps { primary?: boolean; backgroundColor?: string; size?: 'small' | 'medium' | 'large'; label: string; onClick?: () => void; } declare const Button: React.FC<ButtonProps>; export { Button };