From 1b20b4740db538599f69986eb40aa6c90009178f Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 04:14:12 +0000 Subject: [PATCH] Modified by www.SourceFiles.app --- src/components/ui/input.tsx | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/components/ui/input.tsx diff --git a/src/components/ui/input.tsx b/src/components/ui/input.tsx deleted file mode 100644 index 7db5241..0000000 --- a/src/components/ui/input.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import * as React from "react"; - -import { cn } from "@/lib/utils"; - -const Input = React.forwardRef>( - ({ className, type, ...props }, ref) => { - return ( - - ); - }, -); -Input.displayName = "Input"; - -export { Input };