UNPKG

react-handy-tools

Version:

Handy tools for React

13 lines (12 loc) 300 B
import React from 'react'; interface IButtonProps { label: string; width: number; height: number; fontSize: number; fontColor: string; backgroundColor: string; borderRadius: number; } declare function Button(props: IButtonProps): React.JSX.Element; export default Button;