UNPKG

react-base-guide

Version:

react ui components

12 lines (11 loc) 386 B
import { ButtonHTMLAttributes } from "react"; import { StyleProps } from "../../utils/add-custom-style"; interface IconButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> { children?: any; secondary?: boolean; autoFocus?: boolean; size?: "s" | "m" | "l" | "xl" | "xxl"; shadow?: boolean; styled?: StyleProps; } export default IconButtonProps;