UNPKG

react-base-guide

Version:

react ui components

11 lines (10 loc) 335 B
import { ButtonHTMLAttributes } from "react"; import { StyleProps } from "../../utils/add-custom-style"; interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> { progress?: boolean; secondary?: boolean; success?: boolean; error?: boolean; styled?: StyleProps; } export default ButtonProps;