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