{"version":3,"file":"index.cjs","sources":["../../../src/components/TextArea/index.tsx"],"sourcesContent":["import { cn } from \"@/components/utils\";\nimport * as React from \"react\";\n\nexport interface TextareaProps\n  extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {}\n\nconst Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(\n  ({ className, ...props }, ref) => {\n    return (\n      <textarea\n        className={cn(\n          \"flex min-h-[50px] w-full rounded-md border border-input bg-card px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50\",\n          className\n        )}\n        ref={ref}\n        {...props}\n      />\n    );\n  }\n);\nTextarea.displayName = \"Textarea\";\n\nexport { Textarea };\n"],"names":["Textarea","forwardRef","className","props","ref","jsxRuntimeExports","jsx","cn","displayName"],"mappings":"0bAMMA,sBAAiBC,YACrB,EAAGC,eAAcC,GAASC,MAEtBC,kBAAAC,IAAC,WAAA,CACCJ,UAAWK,EAAAA,GACT,yQACAL,GAEFE,SACID,MAKZH,EAASQ,YAAc"}