import React from "react" import { TextProps } from "./interfaces" import * as S from "./styles" const Text:React.FC = ({ children, className, size, type, as }) => { return ( { children } ) } export default Text