@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) • 845 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* The margin size for each side.
*/
export interface Margin {
/**
* Sets the top margin in pixels.
*
* @default 0
*/
top?: number;
/**
* Sets the right margin in pixels.
*
* @default 0
*/
right?: number;
/**
* Sets the bottom margin in pixels.
*
* @default 0
*/
bottom?: number;
/**
* Sets the left margin in pixels.
*
* @default 0
*/
left?: number;
}