1 2 3 4 5 6 7 8 9 10
interface Props { width?: number | string; height?: number | string; } export const Skeleton: React.FC<Props> = ({ width, height }) => ( <span className='skeleton' style={{ width, height }}> ‌ </span> );