sendou.ink/components/common/SubText.tsx
2020-12-06 21:42:15 +02:00

25 lines
484 B
TypeScript

import { Box } from "@chakra-ui/react";
import { useMyTheme } from "lib/useMyTheme";
interface Props {
children: React.ReactNode;
}
const SubText: React.FC<Props> = ({ children }) => {
const { themeColorShade } = useMyTheme();
return (
<Box
fontSize="xs"
textColor={themeColorShade}
textTransform="uppercase"
letterSpacing="wider"
lineHeight="1rem"
fontWeight="medium"
>
{children}
</Box>
);
};
export default SubText;