|
|
@@ -2,8 +2,7 @@ import * as React from "react";
|
|
|
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
|
|
-export interface InputProps
|
|
|
- extends React.InputHTMLAttributes<HTMLInputElement> {}
|
|
|
+export type InputProps = React.InputHTMLAttributes<HTMLInputElement>;
|
|
|
|
|
|
const Input = React.forwardRef<HTMLInputElement, InputProps>(
|
|
|
({ className, type, ...props }, ref) => {
|