Skip to content

Commit

Permalink
run npm run format
Browse files Browse the repository at this point in the history
  • Loading branch information
shm11C3 committed Dec 15, 2024
1 parent 1ac2c58 commit fd08c94
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/components/ui/skeleton.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
import { cn } from "@/lib/utils"
import { cn } from "@/lib/utils";

function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn("animate-pulse rounded-md bg-neutral-100 dark:bg-neutral-800", className)}
className={cn(
"animate-pulse rounded-md bg-neutral-100 dark:bg-neutral-800",
className,
)}
{...props}
/>
)
);
}

export { Skeleton }
export { Skeleton };

0 comments on commit fd08c94

Please sign in to comment.