UNPKG

nexpi-ui

Version:

An elegant and minimalist Next.js 14 component library

9 lines (8 loc) 319 B
import React from 'react'; interface TypographyProps { children: React.ReactNode; variant?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "light" | "micro"; style?: React.CSSProperties; } declare const Typography: ({ children, variant, style }: TypographyProps) => React.JSX.Element; export default Typography;