( position: React.CSSProperties['position'] = 'absolute', )
| 1 | export default function getInitialPopperStyles( |
| 2 | position: React.CSSProperties['position'] = 'absolute', |
| 3 | ): Partial<React.CSSProperties> { |
| 4 | return { |
| 5 | position, |
| 6 | top: '0', |
| 7 | left: '0', |
| 8 | opacity: '0', |
| 9 | pointerEvents: 'none', |
| 10 | }; |
| 11 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…