mirror of
https://ghproxy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-07-24 12:51:34 +08:00
27 lines
839 B
JavaScript
27 lines
839 B
JavaScript
import Box from '@elementor/ui/Box';
|
|
import { styled } from '@elementor/ui/styles';
|
|
import { StyledSkeleton } from '@ea11y-apps/scanner/styles/app.styles';
|
|
|
|
const HeadingStructureHeadingTreeLoader = () => {
|
|
return (
|
|
<StyledLoaderContainer>
|
|
<StyledSkeleton width="100%" height={48} />
|
|
<StyledSkeleton width="100%" height={48} />
|
|
<StyledSkeleton width="100%" height={48} />
|
|
<StyledSkeleton width="100%" height={48} />
|
|
<StyledSkeleton width="100%" height={48} />
|
|
<StyledSkeleton width="100%" height={48} />
|
|
<StyledSkeleton width="100%" height={48} />
|
|
</StyledLoaderContainer>
|
|
);
|
|
};
|
|
|
|
const StyledLoaderContainer = styled(Box)`
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
margin-top: ${({ theme }) => theme.spacing(2)};
|
|
gap: ${({ theme }) => theme.spacing(1.5)};
|
|
`;
|
|
|
|
export default HeadingStructureHeadingTreeLoader;
|