mirror of
https://github.com/documenso/documenso.git
synced 2026-06-22 04:12:06 +10:00
26 lines
833 B
TypeScript
26 lines
833 B
TypeScript
import * as React from 'react';
|
|
|
|
import { cn } from '../lib/utils';
|
|
|
|
export type TextareaProps = React.TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
|
|
const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(({ className, ...props }, ref) => {
|
|
return (
|
|
<textarea
|
|
className={cn(
|
|
'flex h-20 w-full rounded-md border border-input bg-transparent px-3 py-2 text-sm ring-offset-background 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',
|
|
className,
|
|
{
|
|
'!ring-destructive ring-2 transition-all': props['aria-invalid'],
|
|
},
|
|
)}
|
|
ref={ref}
|
|
{...props}
|
|
/>
|
|
);
|
|
});
|
|
|
|
Textarea.displayName = 'Textarea';
|
|
|
|
export { Textarea };
|