~cytrogen/masto-fe

ref: 8a2677649214ff96a63267ef5294256e814f46b1 masto-fe/app/javascript/mastodon/components/skeleton.tsx -rw-r--r-- 222 bytes
8a267764 — Zoë Bijl [docs] Add changelog based on “Keep a Changelog” (#80) 6 months ago
                                                                                
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 }}>
    &zwnj;
  </span>
);