'use client'; import React, {FC} from 'react'; import {ITypography} from './typography.type'; import {TypographyStyle as S} from './typography.style'; export const TypographyComponent: FC = ({ children, tag, contentWrapper, ...restProps }) => { return ( {children} ); };