From 109d2dee30dbb1f2cc5d72b6b9da68f8ba348146 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Wed, 12 Jul 2023 18:34:32 +0100 Subject: [PATCH] installed shadcn input for file upload --- src/app/shadcn_components/ui/input.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/app/shadcn_components/ui/input.tsx diff --git a/src/app/shadcn_components/ui/input.tsx b/src/app/shadcn_components/ui/input.tsx new file mode 100644 index 0000000..677d05f --- /dev/null +++ b/src/app/shadcn_components/ui/input.tsx @@ -0,0 +1,25 @@ +import * as React from "react" + +import { cn } from "@/lib/utils" + +export interface InputProps + extends React.InputHTMLAttributes {} + +const Input = React.forwardRef( + ({ className, type, ...props }, ref) => { + return ( + + ) + } +) +Input.displayName = "Input" + +export { Input }