From 58f4524aaeeb42d01239d03bf27dae8f21031a9b Mon Sep 17 00:00:00 2001 From: Michael Brusegard <56915010+michaelbrusegard@users.noreply.github.com> Date: Thu, 25 Jan 2024 01:34:48 +0100 Subject: [PATCH] feat: added Skeleton ui component --- src/components/ui/Skeleton.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/components/ui/Skeleton.tsx diff --git a/src/components/ui/Skeleton.tsx b/src/components/ui/Skeleton.tsx new file mode 100644 index 0000000..06b3aab --- /dev/null +++ b/src/components/ui/Skeleton.tsx @@ -0,0 +1,15 @@ +import { cx } from '@/lib/utils'; + +function Skeleton({ + className, + ...props +}: React.HTMLAttributes) { + return ( +
+ ); +} + +export { Skeleton };