UNPKG

nes-ui-react

Version:

A design system that paints the web in 8 bits.

11 lines (10 loc) 415 B
import { ButtonHTMLAttributes } from "react"; import { NamedColor } from "./interface/Color"; export interface ButtonProps extends ButtonHTMLAttributes<any> { color?: NamedColor; fontColor?: NamedColor | string; size?: 'medium' | 'small' | 'large'; borderInverted?: boolean; isIconButton?: boolean; } export declare const Button: (props: ButtonProps) => import("react/jsx-runtime").JSX.Element;