@progress/kendo-react-barcodes
Version:
React Barcodes provide a set of React components to build beautiful and customizable barcodes. KendoReact Barcodes package
32 lines (31 loc) • 909 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
*-------------------------------------------------------------------------------------------
*/
import { DashType } from './dash-type.interface.js';
/**
* The appearance settings for the border lines.
*/
export interface Border {
/**
* Sets the color of the border line. Accepts valid CSS color strings, including hex and rgb.
*
* @default "black"
*/
color?: string;
/**
* Sets the dash type of the border line.
*
* @default "solid"
*/
dashType?: DashType;
/**
* Sets the width of the border line in pixels.
*
* @default 0
*/
width?: number;
}