summaryrefslogtreecommitdiff
path: root/src/components/ui/input.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/input.tsx')
-rw-r--r--src/components/ui/input.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/ui/input.tsx b/src/components/ui/input.tsx
new file mode 100644
index 0000000..0424772
--- /dev/null
+++ b/src/components/ui/input.tsx
@@ -0,0 +1,9 @@
+import { cn } from '@/lib/utils';
+import React from 'react';
+
+export function Input({
+ className,
+ ...props
+}: React.InputHTMLAttributes<HTMLInputElement>) {
+ return <input className={cn('outline-none', className)} {...props} />;
+}