({ className, ...props }: TextareaProps)
| 87 | } |
| 88 | |
| 89 | function InputGroupTextarea({ className, ...props }: TextareaProps) { |
| 90 | return <Textarea className={className} unstyled {...props} />; |
| 91 | } |
| 92 | |
| 93 | export { |
| 94 | InputGroup, |
nothing calls this directly
no outgoing calls
no test coverage detected