mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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;
|