File size: 565 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import { LoadingPlaceholder } from '@automattic/components';
import styled from '@emotion/styled';
const Root = styled.div( {
display: 'flex',
gap: '1em',
flexDirection: 'column',
marginBottom: '16px',
} );
const TextLoadingPlaceholder = styled( LoadingPlaceholder )( {
height: '1.7em',
width: '7em',
} );
const LoadingPlaceholderStyled = styled( LoadingPlaceholder )( {
height: '1.7em',
width: '24em',
} );
export function EdgeCacheLoadingPlaceholder() {
return (
<Root>
<TextLoadingPlaceholder />
<LoadingPlaceholderStyled />
</Root>
);
}
|