UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

25 lines (24 loc) 1.31 kB
import '@ui5/webcomponents/dist/TabSeparator.js'; import type { CommonProps, Ui5DomRef } from '@ui5/webcomponents-react-base'; interface TabSeparatorAttributes { } interface TabSeparatorDomRef extends Required<TabSeparatorAttributes>, Ui5DomRef { /** * Returns the DOM reference of the separator that is placed in the header. * * **Note:** Separators, placed in the `items` slot of other tabs are not shown in the header. Calling this method on such separators will return `undefined`. * @returns {HTMLElement | undefined} */ getDomRefInStrip: () => HTMLElement | undefined; } interface TabSeparatorPropTypes extends TabSeparatorAttributes, CommonProps { } /** * The `TabSeparator` represents a vertical line to separate tabs inside a `TabContainer`. * * __Note:__ This is a UI5 Web Component! [TabSeparator UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/TabSeparator) | [Repository](https://github.com/UI5/webcomponents) * @abstract */ declare const TabSeparator: import("react").ForwardRefExoticComponent<TabSeparatorPropTypes & import("@ui5/webcomponents-react-base").WithWebComponentPropTypes & import("react").RefAttributes<TabSeparatorDomRef>>; export { TabSeparator }; export type { TabSeparatorDomRef, TabSeparatorPropTypes };