aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/components
diff options
context:
space:
mode:
Diffstat (limited to 'packages/web/components')
-rw-r--r--packages/web/components/ui/skeleton.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/web/components/ui/skeleton.tsx b/packages/web/components/ui/skeleton.tsx
index 01b8b6d4..5fab2023 100644
--- a/packages/web/components/ui/skeleton.tsx
+++ b/packages/web/components/ui/skeleton.tsx
@@ -1,4 +1,4 @@
-import { cn } from "@/lib/utils"
+import { cn } from "@/lib/utils";
function Skeleton({
className,
@@ -6,10 +6,10 @@ function Skeleton({
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
- className={cn("animate-pulse rounded-md bg-muted", className)}
+ className={cn("bg-muted animate-pulse rounded-md", className)}
{...props}
/>
- )
+ );
}
-export { Skeleton }
+export { Skeleton };