@barcode-bakery/barcode-react
Version:
Generates barcodes for React.
9 lines (7 loc) • 428 B
TypeScript
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;