@progress/kendo-react-common
Version:
React Common package delivers common utilities that can be used with the KendoReact UI components. KendoReact Common Utilities package
31 lines (30 loc) • 888 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
*-------------------------------------------------------------------------------------------
*/
/**
* @hidden
*
* Represents the base properties of a KendoReact component.
*/
export interface KendoReactComponentBaseProps {
/**
* Sets the `id` property of the top div element of the component.
*/
id?: string;
/**
* Determines the children nodes.
*/
children?: React.ReactNode;
/**
* Sets additional classes to the component.
*/
className?: string;
/**
* Sets additional CSS styles to the component.
*/
style?: React.CSSProperties;
}