import React from "react"; import { clsx } from "clsx"; interface SkeletonProps { className?: string; variant?: "text" | "circular" | "rectangular"; width?: string | number; height?: string | number; } export default function Skeleton({ className, variant = "text", width, height, }: SkeletonProps) { return (
); } export function SkeletonCard() { return (