mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
12 lines
280 B
JavaScript
12 lines
280 B
JavaScript
|
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
|
||
|
const Skeleton = ({ width, height }) => <span className='skeleton' style={{ width, height }}>‌</span>;
|
||
|
|
||
|
Skeleton.propTypes = {
|
||
|
width: PropTypes.number,
|
||
|
height: PropTypes.number,
|
||
|
};
|
||
|
|
||
|
export default Skeleton;
|