react-code-dataset / dev.to-clone /src /utils /CustomizeProfileStyles.js
Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
854 Bytes
import { Box, Text, useColorModeValue } from '@chakra-ui/react';
export const CustomizeProfileCard = ({ children, ...props }) => {
return (
<Box
bg={useColorModeValue('light.cardBg', 'dark.cardBg')}
borderRadius='5px'
className='shadow'
p='1rem 1rem 1.5rem'
mb='1.5rem'
{...props}
>
{children}
</Box>
);
};
export const titleStyles = {
fontSize: '2xl',
fontWeight: '700',
mb: 3,
};
export const Label = ({ children, ...props }) => (
<Text as='label' display='block' {...props}>
{children}
</Text>
);
export const SmallLabel = ({ children }) => {
return (
<Text
mb='3'
fontSize='15px'
color={useColorModeValue('light.colorTertiary', 'dark.colorTertiary')}
>
{children}
</Text>
);
};