import { FC } from "react"; import Styled from "./Skeleton.style"; export const Skeleton: FC = ({ height = "calc(100% - 1em)" }) => { return ; }; interface IProps { height?: string; }