This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
|
import * as React from 'react';
|
|
|
|
interface Props {
|
|
width?: number | string;
|
|
height?: number | string;
|
|
}
|
|
|
|
export const Skeleton: React.FC<Props> = ({ width, height }) => (
|
|
<span className='skeleton' style={{ width, height }}>
|
|
‌
|
|
</span>
|
|
);
|