import * as React from "react"; import { cn } from "@/lib/utils"; const Skeleton = React.forwardRef< HTMLDivElement, React.HTMLAttributes >(({ className, ...props }, ref) => (
)); Skeleton.displayName = "Skeleton"; export { Skeleton };