import { Box, BoxProps } from "@chakra-ui/react"; import { CSSVariables } from "utils/CSSVariables"; interface Props { children: React.ReactNode; } const SubText: React.FC = ({ children, ...props }) => { return ( {children} ); }; export default SubText;