import React from 'react'; import { Element } from './styled'; export type Props = { variant: 'text' | 'rect' | 'circle'; height?: number | string; width?: number | string; }; const Skeleton: React.FC = ({ variant = 'text', height = 'auto', width = 'auto', }: Props) => ( ); export default Skeleton;