-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
input.tsx
34 lines (29 loc) · 1.17 KB
/
input.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import * as React from 'react';
import { type UseFormRegisterReturn } from 'react-hook-form';
import { cn } from '@/utils/cn';
import { FieldWrapper, FieldWrapperPassThroughProps } from './field-wrapper';
export type InputProps = React.InputHTMLAttributes<HTMLInputElement> &
FieldWrapperPassThroughProps & {
className?: string;
registration: Partial<UseFormRegisterReturn>;
};
const Input = React.forwardRef<HTMLInputElement, InputProps>(
({ className, type, label, error, registration, ...props }, ref) => {
return (
<FieldWrapper label={label} error={error}>
<input
type={type}
className={cn(
'flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50',
className,
)}
ref={ref}
{...registration}
{...props}
/>
</FieldWrapper>
);
},
);
Input.displayName = 'Input';
export { Input };