UNPKG

brightyui

Version:

Brighty UI library

14 lines (13 loc) 636 B
import { FC, ReactNode } from 'react'; import { EColors } from '../../types/EColors'; interface IProps { className?: string; children: ReactNode; align?: 'center' | 'left' | 'right'; alignMobile?: 'center' | 'left' | 'right'; variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'pLargeSemibold' | 'pLargeMedium' | 'pLargeRegular' | 'pMediumMedium' | 'pMediumSemibold' | 'pMediumRegular' | 'pSmallMedium' | 'pSmallSemibold' | 'pSmallRegular' | 'captionMedium' | 'captionSemibold' | 'captionRegular' | 'otherMedium'; color?: EColors; lineThrough?: boolean; } declare const Typography: FC<IProps>; export default Typography;