import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLoader'; import { styled } from '@linaria/react'; import { useContext } from 'react'; import Skeleton, { SkeletonTheme } from 'react-loading-skeleton'; import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants'; const StyledSidePanelContainer = styled.div` display: flex; flex-direction: column; width: 100%; padding: ${themeCssVariables.spacing[4]}; `; const StyledSkeletonLoader = () => { const { theme } = useContext(ThemeContext); return ( ); }; export const SidePanelSkeletonLoader = () => { return ( ); };