// @ts-nocheck import React, { useMemo } from 'react'; import '@/style/components/Skeleton.scss'; import { randomNumber } from '@/utils'; /** * Skeleton component. */ export function Skeleton({ Tag = 'span', minWidth = 40, maxWidth = 100, children, }) { const randomWidth = useMemo( () => randomNumber(minWidth, maxWidth), [minWidth, maxWidth], ); return ( ); }