({domRef, isExiting, children}: ThreadScrollButtonInnerProps)
| 360 | } |
| 361 | |
| 362 | function ThreadScrollButtonInner({domRef, isExiting, children}: ThreadScrollButtonInnerProps) { |
| 363 | let isEntering = useEnterAnimation(domRef); |
| 364 | return ( |
| 365 | <div ref={domRef} className={scrollButtonWrapper({isEntering, isExiting})}> |
| 366 | {children} |
| 367 | </div> |
| 368 | ); |
| 369 | } |
| 370 | |
| 371 | const threadItemBase = style({ |
| 372 | ...focusRing(), |
nothing calls this directly
no test coverage detected