| 6 | import Icon from "../Icon"; |
| 7 | |
| 8 | interface Props { |
| 9 | disabled?: boolean; |
| 10 | sendMessage: (content: string) => Promise<void>; |
| 11 | } |
| 12 | |
| 13 | const MessageTextarea = (props: Props) => { |
| 14 | const { disabled, sendMessage } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected