import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLoader'; import { useTheme } from '@emotion/react'; import styled from '@emotion/styled'; import Skeleton, { SkeletonTheme } from 'react-loading-skeleton'; const StyledSkeletonContainer = styled.div` align-items: flex-start; display: flex; flex-direction: column; gap: 6px; min-width: 196px; max-width: 196px; `; export const MainNavigationDrawerItemsSkeletonLoader = ({ title, length, }: { title?: boolean; length: number; }) => { const theme = useTheme(); return ( {title && ( )} {Array.from({ length }).map((_, index) => ( ))} ); };