From 25f7a439c85e156e18271d0d3dec1da70b3e315b Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Sun, 23 Feb 2025 16:38:10 +0100 Subject: [PATCH] Add: shadcn input component --- frontend/src/components/ui/input.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 frontend/src/components/ui/input.tsx diff --git a/frontend/src/components/ui/input.tsx b/frontend/src/components/ui/input.tsx new file mode 100644 index 0000000..69b64fb --- /dev/null +++ b/frontend/src/components/ui/input.tsx @@ -0,0 +1,22 @@ +import * as React from "react" + +import { cn } from "@/lib/utils" + +const Input = React.forwardRef>( + ({ className, type, ...props }, ref) => { + return ( + + ) + } +) +Input.displayName = "Input" + +export { Input }