Files
masto-fe-archos/app/javascript/flavours/glitch/components/skeleton.tsx
2025-10-12 13:42:02 +02:00

13 lines
255 B
TypeScript

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 }}>
&zwnj;
</span>
);