@progress/kendo-react-layout
Version:
React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package
37 lines (36 loc) • 1.01 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
*-------------------------------------------------------------------------------------------
*/
export interface CardBodyProps {
/**
* Sets the CardBody children elements.
*
* @example
* ```jsx
* <CardBody>Body Content</CardBody>
* ```
*/
children?: React.ReactNode;
/**
* Sets additional CSS styles to the CardBody.
*
* @example
* ```jsx
* <CardBody style={{ padding: '20px' }}>Body Content</CardBody>
* ```
*/
style?: React.CSSProperties;
/**
* Sets additional classes to the CardBody.
*
* @example
* ```jsx
* <CardBody className="custom-class">Body Content</CardBody>
* ```
*/
className?: string;
}