Function
InputGroupTextarea
({
className,
...props
}: React.ComponentProps<"textarea">)
Source from the content-addressed store, hash-verified
| 145 | } |
| 146 | |
| 147 | function InputGroupTextarea({ |
| 148 | className, |
| 149 | ...props |
| 150 | }: React.ComponentProps<"textarea">) { |
| 151 | return ( |
| 152 | <Textarea |
| 153 | data-slot="input-group-control" |
| 154 | className={cn( |
| 155 | "flex-1 resize-none rounded-none border-0 bg-transparent py-3 shadow-none focus-visible:ring-0 dark:bg-transparent", |
| 156 | className |
| 157 | )} |
| 158 | {...props} |
| 159 | /> |
| 160 | ) |
| 161 | } |
| 162 | |
| 163 | export { |
| 164 | InputGroup, |
Callers
nothing calls this directly
Tested by
no test coverage detected