Files
SSA-Admin-Panel/src/Pages/ManageCMS/PrivacyPolicy/PrivacyPolicySkeleton.tsx
2025-02-12 13:18:18 +05:30

16 lines
512 B
TypeScript

import { Box, Skeleton } from '@chakra-ui/react'
import React from 'react'
const PrivacyPolicySkeleton = () => {
return (
<Box px={3} pb={3} w="90%">
<Skeleton height="20px" mb="10px" width="90%" />
<Skeleton height="20px" mb="15px" width="90%" />
<Skeleton height="20px" mb="10px" width="90%" />
<Skeleton height="20px" mb="10px" width="80%" />
<Skeleton height="20px" width="60%" />
</Box>
)
}
export default PrivacyPolicySkeleton