/** * @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; }