UNPKG

react-vite-themes

Version:

A test/experimental React theme system created for learning purposes. Features atomic design components, SCSS variables, and dark/light theme support. Not intended for production use.

13 lines 678 B
import React from 'react'; import './Typography.scss'; export interface TypographyProps { variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span' | 'div' | 'label' | 'body'; size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | 'current'; weight?: 'light' | 'normal' | 'medium' | 'semibold' | 'bold' | 'extrabold'; color?: 'primary' | 'secondary' | 'muted' | 'accent' | 'success' | 'warning' | 'error' | 'inherit'; align?: 'left' | 'center' | 'right' | 'justify'; className?: string; children: React.ReactNode; } export declare const Typography: React.FC<TypographyProps>; //# sourceMappingURL=Typography.d.ts.map