mirror of
https://github.com/funamitech/mastodon
synced 2024-11-24 07:06:34 +09:00
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
interface Props {
|
|
width?: number | string;
|
|
height?: number | string;
|
|
}
|
|
|
|
export const Skeleton: React.FC<Props> = ({ width, height }) => (
|
|
<span className='skeleton' style={{ width, height }}>
|
|
‌
|
|
</span>
|
|
);
|