UNPKG

@progress/kendo-react-barcodes

Version:

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

16 lines (15 loc) 636 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * Sets the rendering mode of the component. * * The supported values are: * * `"canvas"`—Renders the component as a Canvas element. * * `"svg"`—Renders the component as an inline SVG document. */ export type RenderMode = 'svg' | 'canvas';