({domRef, isExiting, children}: ThreadScrollButtonInnerProps)
| 315 | } |
| 316 | |
| 317 | function ThreadScrollButtonInner({domRef, isExiting, children}: ThreadScrollButtonInnerProps) { |
| 318 | let isEntering = useEnterAnimation(domRef); |
| 319 | return ( |
| 320 | <div ref={domRef} className={scrollButtonWrapper({isEntering, isExiting})}> |
| 321 | {children} |
| 322 | </div> |
| 323 | ); |
| 324 | } |
| 325 | |
| 326 | const threadItemBase = style({ |
| 327 | ...focusRing(), |
nothing calls this directly
no test coverage detected