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` display: flex; flex-direction: column; gap: ${({ theme }) => theme.spacing(2)}; height: 71px; padding-left: ${({ theme }) => theme.spacing(1)}; `; const StyledSkeletonColumn = styled.div` display: flex; flex-direction: column; gap: ${({ theme }) => theme.spacing(1)}; `; export const FavoritesSkeletonLoader = () => { const theme = useTheme(); return ( ); };