sendou.ink/components/common/SubText.tsx
2021-01-30 13:04:10 +02:00

26 lines
530 B
TypeScript

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