@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) • 851 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 padding size for each side.
*/
export interface Padding {
/**
* Sets the top padding in pixels.
*
* @default 0
*/
top?: number;
/**
* Sets the right padding in pixels.
*
* @default 0
*/
right?: number;
/**
* Sets the bottom padding in pixels.
*
* @default 0
*/
bottom?: number;
/**
* Sets the left padding in pixels.
*
* @default 0
*/
left?: number;
}