1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-13 06:03:49 -05:00

11 lines
222 B
TypeScript
Raw Normal View History

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