import type { SystemStyleObject } from '@chakra-ui/react'; import { Box, Skeleton } from '@chakra-ui/react'; import { memo } from 'react'; const skeletonStyles: SystemStyleObject = { position: 'relative', height: 'full', width: 'full', '::before': { content: "''", display: 'block', pt: '100%', }, }; const IAIFillSkeleton = () => { return ( ); }; export default memo(IAIFillSkeleton);