mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
import { cn } from '../lib/utils';
|
|
|
|
function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
|
|
return <div className={cn('bg-muted animate-pulse rounded-md', className)} {...props} />;
|
|
}
|
|
|
|
export { Skeleton };
|