import React, { Ref } from 'react'; import Guides from '@scena/react-guides'; import { Size } from '@pdfme/common'; import { ZOOM, RULER_HEIGHT } from '../../../constants'; const _Guides = ({ paperSize, horizontalRef, verticalRef, }: { paperSize: Size; horizontalRef: Ref | undefined; verticalRef: Ref | undefined; }) => ( <>
); export default _Guides;