Function
InputGroupTextarea
({
className,
...props
}: React.ComponentProps<"textarea">)
Source from the content-addressed store, hash-verified
| 132 | } |
| 133 | |
| 134 | function InputGroupTextarea({ |
| 135 | className, |
| 136 | ...props |
| 137 | }: React.ComponentProps<"textarea">) { |
| 138 | return ( |
| 139 | <Textarea |
| 140 | data-slot="input-group-control" |
| 141 | className={cn( |
| 142 | "rounded-none border-0 bg-transparent py-2 shadow-none ring-0 focus-visible:ring-0 disabled:bg-transparent aria-invalid:ring-0 dark:bg-transparent dark:disabled:bg-transparent flex-1 resize-none", |
| 143 | className |
| 144 | )} |
| 145 | {...props} |
| 146 | /> |
| 147 | ); |
| 148 | } |
| 149 | |
| 150 | export { |
| 151 | InputGroup, |
Callers
nothing calls this directly
Tested by
no test coverage detected