textarea.tsx 801 B

12345678910111213141516171819202122232425
  1. import * as React from 'react';
  2. import { cn } from '@/lib/utils';
  3. export type TextareaProps = React.TextareaHTMLAttributes<HTMLTextAreaElement>;
  4. const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
  5. ({ className, ...props }, ref) => {
  6. return (
  7. <textarea
  8. className={cn(
  9. 'flex min-h-[80px] w-full rounded-md border border-input bg-background px-3 py-2 text-sm',
  10. 'ring-offset-background placeholder:text-muted-foreground',
  11. 'focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2',
  12. 'disabled:cursor-not-allowed disabled:opacity-50',
  13. className
  14. )}
  15. ref={ref}
  16. {...props}
  17. />
  18. );
  19. }
  20. );
  21. Textarea.displayName = 'Textarea';
  22. export { Textarea };