Files
twenty_crm/packages/twenty-front/src/modules/settings/accounts/components/SettingsAccountLoader.tsx

16 lines
418 B
TypeScript

import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
import { useTheme } from '@emotion/react';
export const SettingsAccountLoader = () => {
const theme = useTheme();
return (
<SkeletonTheme
baseColor={theme.background.tertiary}
highlightColor={theme.background.transparent.lighter}
borderRadius={4}
>
<Skeleton height={20} width={512} />
</SkeletonTheme>
);
};