UNPKG

@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.04 kB
/** * @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 CardFooterProps { /** * Sets the CardFooter children elements. * * @example * ```jsx * <CardFooter>Footer Content</CardFooter> * ``` */ children?: React.ReactNode; /** * Sets additional CSS styles to the CardFooter. * * @example * ```jsx * <CardFooter style={{ textAlign: 'center' }}>Footer Content</CardFooter> * ``` */ style?: React.CSSProperties; /** * Sets additional classes to the CardFooter. * * @example * ```jsx * <CardFooter className="custom-class">Footer Content</CardFooter> * ``` */ className?: string; }