diff options
author | 2025-04-26 01:20:12 +0530 | |
---|---|---|
committer | 2025-04-26 01:20:12 +0530 | |
commit | 3941d80ff120238b973451325b834ebd8377281e (patch) | |
tree | 4647b687ceb27cb6bb47ea73bdf12898dcce8023 /frontend/src/components/ui/input.tsx | |
parent | 9d65a782ca3e2084ef0f560500f6014d7bd09bc0 (diff) | |
download | finance-3941d80ff120238b973451325b834ebd8377281e.tar.gz finance-3941d80ff120238b973451325b834ebd8377281e.tar.bz2 finance-3941d80ff120238b973451325b834ebd8377281e.zip |
Diffstat (limited to 'frontend/src/components/ui/input.tsx')
-rw-r--r-- | frontend/src/components/ui/input.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/src/components/ui/input.tsx b/frontend/src/components/ui/input.tsx index 91d3df1..c15af1b 100644 --- a/frontend/src/components/ui/input.tsx +++ b/frontend/src/components/ui/input.tsx @@ -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) => { |