icns-frontend/components/skeleton/skeleton-text.ts
2022-12-07 18:17:59 +09:00

14 lines
332 B
TypeScript

// Styles
import styled from "styled-components";
// Components
import { SkeletonAnimation } from "./skeleton-animation";
// Types
import { WidthHeightProps } from "../../types";
export const SkeletonText = styled(SkeletonAnimation)<WidthHeightProps>`
width: ${(props) => props.width};
height: ${(props) => props.height};
`;