import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLoader'; import styled from '@emotion/styled'; import Skeleton, { SkeletonTheme } from 'react-loading-skeleton'; import { BACKGROUND_LIGHT, GRAY_SCALE } from 'twenty-ui'; 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; }) => { return ( {title && ( )} {Array.from({ length }).map((_, index) => ( ))} ); };