icns-frontend/components/skeleton/skeleton-text.ts

14 lines
332 B
TypeScript
Raw Normal View History

2022-12-07 09:17:59 +00:00
// 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};
`;