UNPKG

@progress/kendo-react-barcodes

Version:

React Barcodes provide a set of React components to build beautiful and customizable barcodes. KendoReact Barcodes package

37 lines (36 loc) 944 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * The image overlay configuration of the QR Code. */ export interface QRCodeOverlay { /** * Sets the overlay height in pixels. * * @default undefined */ height?: number; /** * Sets the source image for the overlay. * * Required only when `type` is set to `'image'`. */ imageUrl?: string; /** * Sets the overlay type. * * @default "image" */ type?: 'image' | 'swiss'; /** * Sets the overlay width in pixels. * * @default undefined */ width?: number; }