1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-16 15:43:49 -05:00

12 lines
280 B
JavaScript
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
const Skeleton = ({ width, height }) => <span className='skeleton' style={{ width, height }}>&zwnj;</span>;
Skeleton.propTypes = {
width: PropTypes.number,
height: PropTypes.number,
};
export default Skeleton;