From 29d4d624b2056242ef5b119c105db28f950f27c3 Mon Sep 17 00:00:00 2001 From: schererleander Date: Mon, 14 Jul 2025 18:12:17 +0200 Subject: feat: new shadcn/ui components --- src/components/ui/aspect-ratio.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/components/ui/aspect-ratio.tsx (limited to 'src/components/ui/aspect-ratio.tsx') diff --git a/src/components/ui/aspect-ratio.tsx b/src/components/ui/aspect-ratio.tsx new file mode 100644 index 0000000..3df3fd0 --- /dev/null +++ b/src/components/ui/aspect-ratio.tsx @@ -0,0 +1,11 @@ +"use client" + +import * as AspectRatioPrimitive from "@radix-ui/react-aspect-ratio" + +function AspectRatio({ + ...props +}: React.ComponentProps) { + return +} + +export { AspectRatio } -- cgit v1.3.1