(element: Element)
| 20 | * the captured shape stays in one place. |
| 21 | */ |
| 22 | export const getImageOriginRect = (element: Element): ImageOriginRect => { |
| 23 | const { top, left, width, height } = element.getBoundingClientRect(); |
| 24 | return { top, left, width, height }; |
| 25 | }; |
| 26 | |
| 27 | interface ImageModalProps extends ReactModal.Props { |
| 28 | src: string; |
no outgoing calls
no test coverage detected