CustomSidebarContentSkeleton.tsx 736 B

123456789101112131415161718
  1. import React from 'react';
  2. import { Skeleton } from '~/components/Skeleton';
  3. import styles from '../CustomSidebar.module.scss';
  4. const CustomSidebarContentSkeleton = (): JSX.Element => {
  5. return (
  6. <div className={`py-3 grw-custom-sidebar-content ${styles['grw-custom-sidebar-content']}`}>
  7. <Skeleton additionalClass={`grw-custom-sidebar-skeleton-text-full ${styles['grw-custom-sidebar-skeleton-text-full']}`} />
  8. <Skeleton additionalClass={`grw-custom-sidebar-skeleton-text-full ${styles['grw-custom-sidebar-skeleton-text-full']}`} />
  9. <Skeleton additionalClass={`grw-custom-sidebar-skeleton-text ${styles['grw-custom-sidebar-skeleton-text']}`} />
  10. </div>
  11. );
  12. };
  13. export default CustomSidebarContentSkeleton;