@progress/kendo-react-common
Version:
React Common package delivers common utilities that can be used with the KendoReact UI components. KendoReact Common Utilities package
28 lines (27 loc) • 866 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2023 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;
}