import { cn } from "@/lib/utils"; function Skeleton({ className, ...props }: React.HTMLAttributes) { return (
); } function SkeletonShimmer({ className, ...props }: React.HTMLAttributes) { return (
); } export { Skeleton, SkeletonShimmer };