UNPKG

rharuow-ds

Version:

Modern React Design System with 20 components and auto color system. Define only 2 colors (primary/secondary) and get automatic variations (hover, light, dark) with proper text contrast (WCAG AA). Includes: Table, Card, Button, Chip, Pagination, Input, Te

8 lines (7 loc) 275 B
import React from "react"; interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> { variant?: "default" | "outline" | "secondary" | "icon"; size?: "xl" | "lg" | "md" | "sm" | "xs"; } export declare const Button: React.FC<ButtonProps>; export {};