| 1 | import { AnimatePresence, cubicBezier, motion } from 'framer-motion'; |
| 2 | |
| 3 | interface SendButtonProps { |
| 4 | show: boolean; |
| 5 | isStreaming?: boolean; |
| 6 | onClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void; |
| 7 | } |
| 8 | |
| 9 | const customEasingFn = cubicBezier(0.4, 0, 0.2, 1); |
| 10 |
nothing calls this directly
no outgoing calls
no test coverage detected