@progress/kendo-react-layout
Version:
React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package
26 lines (25 loc) • 935 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
*-------------------------------------------------------------------------------------------
*/
import * as React from 'react';
/**
* Represents the props of the [KendoReact AppBarSection component](https://www.telerik.com/kendo-react-ui/components/layout/appbar/content-arrangement#toc-sections).
*/
export interface AppBarSectionProps {
/**
* Represents the child elements that are passed to the AppBarSection.
*/
children?: any;
/**
* Sets additional CSS classes to the AppBarSection.
*/
className?: string;
/**
* Sets additional CSS styles to the AppBarSection.
*/
style?: React.CSSProperties;
}