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

18 lines
439 B
TypeScript
Raw Normal View History

2022-12-07 09:17:59 +00:00
// 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};
2022-12-17 07:48:35 +00:00
background-color: ${color.grey["600"]};
2022-12-07 09:17:59 +00:00
border-radius: 50%;
`;