16 lines
No EOL
494 B
TypeScript
16 lines
No EOL
494 B
TypeScript
import * as React from 'react';
|
|
|
|
export type TextareaProps = React.TextareaHTMLAttributes<HTMLTextAreaElement>
|
|
|
|
export const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
|
|
({ className = '', ...props }, ref) => {
|
|
return (
|
|
<textarea
|
|
ref={ref}
|
|
className={`min-h-[100px] w-full rounded-md border px-3 py-2 text-sm outline-none focus:ring-2 focus:ring-black/10 ${className}`}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
);
|
|
Textarea.displayName = 'Textarea'; |