import React, { HTMLAttributes } from 'react';
import './index.scss';
export interface TypographyProps extends HTMLAttributes {
children?: React.ReactNode;
}
const Typography: React.FC = (props) => {
const { children, ...rest } = props;
return (
{children}
);
};
Typography.defaultProps = {
children: ''
};
export default Typography;