Typography 컴포넌트 구현하기
Typography 컴포넌트 구현하기Typography 컴포넌트는 텍스트를 보여주기 위한 컴포넌트입니다.일반적으로 HTML에서 텍스트를 표시할 때는 span 또는 p 태그를 사용합니다.제가 구현한 Typography 컴포넌트는 기본적으로 span 태그를 사용하지만, 사용자가 필요에 따라 p 태그로 변경할 수 있도록 유연하게 설계되었습니다.Typography 구현하기propsinterface TypographyProps { color?: TypographyColor; align?: "inherit" | "center" | "right" | "left"; variant?: TypographyVariant; noWrap?: boolean; component?: ElementType; children..