import { MarkLocation } from '../../types/mark.ts' import styles from '../DrawPDFFields/style.module.scss' import { inPx } from '../../utils/pdf.ts' interface PdfMarkItemProps { markLocation: MarkLocation } const PdfMarkItem = ({ markLocation }: PdfMarkItemProps) => { return (
) } export default PdfMarkItem