UNPKG

@progress/kendo-react-layout

Version:

React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package

59 lines (58 loc) 1.75 kB
/** * @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 properties of [BreadcrumbListItem](https://www.telerik.com/kendo-react-ui/components/layout/api/breadcrumblistitem) component. */ export interface BreadcrumbListItemProps { /** * Sets the `id` property of the top `div` element of the BreadcrumbListItem. */ id?: string; /** * Sets additional CSS styles to the BreadcrumbListItem. */ style?: React.CSSProperties; /** * Sets additional classes to the BreadcrumbListItem. */ className?: string; /** * Determines the children nodes. */ children?: React.ReactNode; /** * @hidden */ isFirstItem: any; /** * @hidden */ isLastItem: any; } /** * Represents the target (element, props, and focus()) of the BreadcrumbListItem. */ export interface BreadcrumbListItemHandle { /** * The current element or `null` if there is none. */ element: any; /** * The props values of the Breadcrumb. */ props: BreadcrumbListItemProps; /** * The `focus` method of the BreadcrumbListItem component. */ focus: () => void; } /** * Represents the BreadcrumbListItem component. */ export declare const BreadcrumbListItem: React.ForwardRefExoticComponent<BreadcrumbListItemProps & React.RefAttributes<BreadcrumbListItemHandle | null>>;