@progress/kendo-react-layout
Version:
React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package
51 lines (50 loc) • 1.65 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
*-------------------------------------------------------------------------------------------
*/
import * as React from 'react';
/**
* Represents the props of [BreadcrumbDelimiter](https://www.telerik.com/kendo-react-ui/components/layout/api/breadcrumbdelimiter) component.
*/
export interface BreadcrumbDelimiterProps {
/**
* Sets the `id` property of the BreadcrumbDelimiter component.
*/
id?: string;
/**
* Sets additional classes to the BreadcrumbDelimiter component.
*/
className?: string;
/**
* Sets additional CSS styles to the BreadcrumbDelimiter component.
*/
style?: React.CSSProperties;
/**
* Sets the `tabIndex` attribute to the BreadcrumbDelimiter.
*/
tabIndex?: number;
/**
* @hidden
*/
dir?: string;
}
/**
* Represents the target (element, props, and focus()) of the BreadcrumbDelimiter.
*/
export interface BreadcrumbDelimiterHandle {
/**
* The current element or `null` if there is none.
*/
element: HTMLSpanElement | null;
/**
* The props values of the BreadcrumbDelimiter.
*/
props: BreadcrumbDelimiterProps;
}
/**
* Represents the BreadcrumbDelimiter component.
*/
export declare const BreadcrumbDelimiter: React.ForwardRefExoticComponent<BreadcrumbDelimiterProps & React.RefAttributes<BreadcrumbDelimiterHandle | null>>;