import React from 'react' import type { HTMLAttributes } from 'react' import { cn } from '@/lib/utils' function Skeleton ({ className, ...props }: HTMLAttributes) { return ( ) } export { Skeleton }