19 lines
563 B
TypeScript
19 lines
563 B
TypeScript
import { forwardRef, TextareaHTMLAttributes } from "react";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
export const Textarea = forwardRef<HTMLTextAreaElement, TextareaHTMLAttributes<HTMLTextAreaElement>>(
|
|
function Textarea({ className, ...props }, ref) {
|
|
return (
|
|
<textarea
|
|
ref={ref}
|
|
className={cn(
|
|
"ui-control",
|
|
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-accent/70 focus-visible:ring-offset-2 focus-visible:ring-offset-bg",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
);
|