From 28772559483e75d7086f9ae2ae22c9e022095eb8 Mon Sep 17 00:00:00 2001 From: Nathnael Date: Wed, 24 Jun 2026 12:58:30 +0000 Subject: [PATCH] style: ui fix on skeleton --- packages/ui-common/src/components/skeleton.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/ui-common/src/components/skeleton.tsx b/packages/ui-common/src/components/skeleton.tsx index fe08ad75e..dc986d964 100644 --- a/packages/ui-common/src/components/skeleton.tsx +++ b/packages/ui-common/src/components/skeleton.tsx @@ -1,13 +1,13 @@ -import { cn } from "../lib/utils" +import { cn } from "../lib/utils"; function Skeleton({ className, ...props }: React.ComponentProps<"div">) { return (
- ) + ); } -export { Skeleton } +export { Skeleton };