({domRef, isExiting, children}: ThreadScrollButtonInnerProps)
| 347 | } |
| 348 | |
| 349 | function ThreadScrollButtonInner({domRef, isExiting, children}: ThreadScrollButtonInnerProps) { |
| 350 | let isEntering = useEnterAnimation(domRef); |
| 351 | return ( |
| 352 | <div ref={domRef} className={scrollButtonWrapper({isEntering, isExiting})}> |
| 353 | {children} |
| 354 | </div> |
| 355 | ); |
| 356 | } |
| 357 | |
| 358 | const threadItemBase = style({ |
| 359 | ...focusRing(), |
nothing calls this directly
no test coverage detected