import React from 'react'; import { Box, Skeleton, SkeletonCircle, useColorModeValue, } from '@chakra-ui/react'; import useSkeletonColor from '../../hooks/useSkeletonColor'; const ProfileSkeleton = () => { const skeletonColor = useSkeletonColor(); return ( ); }; export default ProfileSkeleton;