~cytrogen/masto-fe

ref: 6746e5d4309fa8022e8a84674b85251543a31317 masto-fe/app/javascript/flavours/glitch/components/skeleton.tsx -rw-r--r-- 250 bytes
6746e5d4 — たいち ひ [Glitch] Rewrite `<Skeleton/>` as FC and TS 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
import React from 'react';

interface Props {
  width?: number | string;
  height?: number | string;
}

export const Skeleton: React.FC<Props> = ({ width, height }) => (
  <span className='skeleton' style={{ width, height }}>
    &zwnj;
  </span>
);