icns-frontend/components/skeleton/skeleton-circle.ts
2022-12-17 16:48:35 +09:00

18 lines
439 B
TypeScript

// Styles
import color from "../../styles/color";
import styled from "styled-components";
// Components
import { SkeletonAnimation } from "./skeleton-animation";
// Types
import { WidthHeightProps } from "../../types";
export const SkeletonCircle = styled(SkeletonAnimation)<WidthHeightProps>`
width: ${(props) => props.width};
height: ${(props) => props.height};
background-color: ${color.grey["600"]};
border-radius: 50%;
`;