(width: number, height: number)
| 47 | }); |
| 48 | |
| 49 | const getBoxPositionOnScreenCenter = (width: number, height: number) => ({ |
| 50 | top: (window.screen.height - height) / 2, |
| 51 | left: (window.screen.width - width) / 2, |
| 52 | }); |
| 53 | |
| 54 | function getButtonBorderRadius(children: React.ReactNode) { |
| 55 | const childNodes = Children.toArray(children); |
no outgoing calls
no test coverage detected
searching dependent graphs…