| 87 | }; |
| 88 | |
| 89 | interface ScrollButtonProps { |
| 90 | icon: React.ElementType; |
| 91 | onClick?: () => void; |
| 92 | disabled?: boolean; |
| 93 | } |
| 94 | |
| 95 | const ScrollButton = ({ icon, onClick, disabled }: ScrollButtonProps) => { |
| 96 | const Icon = icon; |
nothing calls this directly
no outgoing calls
no test coverage detected