import * as React from 'react'; import { cn } from '@/lib/utils'; type SkeletonProps = React.ComponentPropsWithoutRef<'div'>; export default function Skeleton({ className, ...rest }: SkeletonProps) { return (