UNPKG

@barcode-bakery/barcode-react

Version:
9 lines (7 loc) 428 B
import { BakeryBarcode1DProps } from '../common/models/barcode-1d-props'; export interface BakeryI25Props extends BakeryBarcode1DProps { checksum?: boolean; ratio?: number | string; text: string; } export declare function BakeryI25({ scale, foregroundColor, backgroundColor, offsetX, offsetY, thickness, label, font, displayChecksum, checksum, ratio, text }: Readonly<BakeryI25Props>): import("react").JSX.Element;