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 StyledRightDrawerContainer = styled.div` display: flex; flex-direction: column; width: 100%; padding: ${({ theme }) => theme.spacing(4)}; `; const StyledSkeletonLoader = () => { const theme = useTheme(); return ( ); }; export const RightDrawerSkeletonLoader = () => { return ( ); };