import React from 'react'; import { TypographyProps } from './types'; import './Typography.scss'; const Typography: React.FC = ({ fontWeight = 'regular', fontSize = 12, lineHeight = 'normal', color = '', textAlign = 'left', as: Element = 'span', letterSpacing = '', className = '', children, htmlFor = '', onClick = () => {}, }) => { const fontSizeValue = typeof fontSize === 'number' ? `${fontSize}px` : fontSize; return ( {children} ); }; export default Typography;