import * as React from "react" import { cn } from "@/lib/utils" export type SkeletonProps = React.ComponentProps<"div"> & { rounded?: "sm" | "md" | "lg" | "full" animated?: boolean } const roundedClassName: Record, string> = { sm: "rounded-sm", md: "rounded-md", lg: "rounded-lg", full: "rounded-full", } function Skeleton({ rounded = "md", animated = true, className, ...props }: SkeletonProps) { return (