import * as React from "react" import { cn } from "@/lib/utils" interface SkeletonProps extends React.HTMLAttributes { animated?: boolean } function Skeleton({ className, animated = true, ...props }: SkeletonProps) { return (
) } export { Skeleton }