From 00913e6bc7fc86dc28b3ea59cfe4531da70bf81f Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 22 Aug 2026 23:08:25 +0000 Subject: [PATCH] Terminal --- 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 };