import React, { Ref } from 'react'; import Guides from '@scena/react-guides'; import { ZOOM, Size } from '@pdfme-tables/common'; import { RULER_HEIGHT } from '../../../constants'; const guideStyle = ( top: number, left: number, height: number, width: number ): React.CSSProperties => ({ position: 'absolute', top, left, height, width, background: '#333333', }); const _Guides = ({ paperSize, horizontalRef, verticalRef, }: { paperSize: Size; horizontalRef: Ref | undefined; verticalRef: Ref | undefined; }) => ( <>
); export default _Guides;