mirror of
https://github.com/documenso/documenso.git
synced 2026-06-22 04:12:06 +10:00
27 lines
903 B
TypeScript
27 lines
903 B
TypeScript
import * as React from 'react';
|
|
|
|
import { cn } from '../lib/utils';
|
|
|
|
export type InputProps = React.InputHTMLAttributes<HTMLInputElement>;
|
|
|
|
const Input = React.forwardRef<HTMLInputElement, InputProps>(({ className, type, ...props }, ref) => {
|
|
return (
|
|
<input
|
|
type={type}
|
|
className={cn(
|
|
'flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-base ring-offset-background file:border-0 file:bg-transparent file:font-medium file:text-sm placeholder:text-muted-foreground/40 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm',
|
|
className,
|
|
{
|
|
'!ring-destructive ring-2 transition-all': props['aria-invalid'],
|
|
},
|
|
)}
|
|
ref={ref}
|
|
{...props}
|
|
/>
|
|
);
|
|
});
|
|
|
|
Input.displayName = 'Input';
|
|
|
|
export { Input };
|