diff --git a/lightrag_webui/src/components/ui/Textarea.tsx b/lightrag_webui/src/components/ui/Textarea.tsx new file mode 100644 index 00000000..04a061a8 --- /dev/null +++ b/lightrag_webui/src/components/ui/Textarea.tsx @@ -0,0 +1,25 @@ +import * as React from 'react' +import { cn } from '@/lib/utils' + +export interface TextareaProps + extends React.TextareaHTMLAttributes { + className?: string +} + +const Textarea = React.forwardRef( + ({ className, ...props }, ref) => { + return ( +