textarea.tsx 764 B

123456789101112131415161718192021222324
  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 ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",
  10. className
  11. )}
  12. ref={ref}
  13. {...props}
  14. />
  15. );
  16. }
  17. );
  18. Textarea.displayName = "Textarea";
  19. export { Textarea };