import { Box, Text, useColorModeValue } from '@chakra-ui/react';
export const CustomizeProfileCard = ({ children, ...props }) => {
return (
{children}
);
};
export const titleStyles = {
fontSize: '2xl',
fontWeight: '700',
mb: 3,
};
export const Label = ({ children, ...props }) => (
{children}
);
export const SmallLabel = ({ children }) => {
return (
{children}
);
};