UNPKG

@acontplus/ui-kit

Version:

Framework-agnostic UI kit library providing reusable design assets, SVG icon definitions, button types, select options, and design system elements for consistent user interfaces across any JavaScript framework.

15 lines (14 loc) 529 B
/** * Button types for HTML button elements */ export type ButtonType = 'button' | 'submit' | 'reset'; /** * Button variant/color schemes * Framework-agnostic color variants for button styling */ export type ButtonVariant = 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark'; /** * Material Design button styles * Based on Material Design 3 specifications */ export type MaterialButtonStyle = 'text' | 'elevated' | 'outlined' | 'filled' | 'tonal' | 'icon' | 'fab' | 'mini-fab' | 'extended-fab';