mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-24 02:12:01 +08:00
11 lines
325 B
JavaScript
11 lines
325 B
JavaScript
import CardContent from '@elementor/ui/CardContent';
|
|
import Skeleton from '@elementor/ui/Skeleton';
|
|
import { styled } from '@elementor/ui/styles';
|
|
|
|
export const StyledContent = styled(CardContent)`
|
|
padding: 0 ${({ theme }) => theme.spacing(1.5)};
|
|
`;
|
|
|
|
export const StyledSkeleton = styled(Skeleton)`
|
|
transform: scale(1);
|
|
`;
|