import * as React from 'react'; interface Props { width?: number | string; height?: number | string; } export const Skeleton: React.FC = ({ width, height }) => ( );