@progress/kendo-react-indicators
Version:
React Indicators offer an interface to represent a visual indication for their UI elements. KendoReact Indicators package
29 lines (28 loc) • 1.03 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* Represents the props of the [KendoReact BadgeContainer component](https://www.telerik.com/kendo-react-ui/components/indicators/badge).
*/
export interface BadgeContainerProps {
/**
* The React elements that will be rendered inside the BadgeContainer.
*/
children?: React.ReactNode;
/**
* Specifies a list of CSS classes that will be added to the BadgeContainer.
*/
className?: string;
/**
* Represents the `dir` HTML attribute. This is used to switch from LTR to RTL.
*/
dir?: string;
/**
* Sets additional CSS styles to the BadgeContainer.
*/
style?: React.CSSProperties;
}