import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLoader'; import { PageBody } from '@/ui/layout/page/components/PageBody'; import { PageHeader } from '@/ui/layout/page/components/PageHeader'; import { useTheme } from '@emotion/react'; import styled from '@emotion/styled'; import Skeleton, { SkeletonTheme } from 'react-loading-skeleton'; const StyledContainer = styled.div` display: flex; flex-direction: column; width: 100%; `; const StyledTitleLoaderContainer = styled.div` margin: ${({ theme }) => theme.spacing(8, 8, 2)}; `; export const SettingsSkeletonLoader = () => { const theme = useTheme(); return ( {' '} } /> ); };