UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

17 lines (16 loc) 931 B
'use client'; import '@ui5/webcomponents-fiori/dist/ShellBarBranding.js'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * The `ShellBarBranding` component is intended to be placed inside the branding slot of the * `ShellBar` component. Its content has higher priority than the `primaryTitle` property * and the `logo` slot of `ShellBar`. * * __Note:__ This is a UI5 Web Component! [ShellBarBranding UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/fiori/ShellBarBranding) | [Repository](https://github.com/UI5/webcomponents) * * @since [2.12.0](https://github.com/UI5/webcomponents/releases/tag/v2.12.0) of __@ui5/webcomponents-fiori__. * @experimental */ const ShellBarBranding = withWebComponent('ui5-shellbar-branding', ['accessibleName', 'href', 'target'], [], ['logo'], ['click']); ShellBarBranding.displayName = 'ShellBarBranding'; export { ShellBarBranding };