import Skeleton, { SkeletonTheme } from 'react-loading-skeleton'; import { useTheme } from '@emotion/react'; import styled from '@emotion/styled'; const StyledSkeletonTitle = styled.div` margin-bottom: ${(props) => props.theme.spacing(2)}; padding-left: ${({ theme }) => theme.spacing(1)}; `; export const NavigationDrawerSectionTitleSkeletonLoader = () => { const theme = useTheme(); return ( ); };