9 lines
210 B
TypeScript
9 lines
210 B
TypeScript
export function Skeleton({ className = '' }: { className?: string }) {
|
|
return (
|
|
<span
|
|
aria-hidden="true"
|
|
className={`block animate-pulse rounded bg-element-active ${className}`}
|
|
/>
|
|
);
|
|
}
|