UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

15 lines (14 loc) 608 B
'use client'; import '@ui5/webcomponents/dist/Title.js'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * The `Title` component is used to display titles inside a page. * It is a simple, large-sized text with explicit header/title semantics. * * * * __Note:__ This is a UI5 Web Component! [Title UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/Title) | [Repository](https://github.com/UI5/webcomponents) */ const Title = withWebComponent('ui5-title', ['level', 'size', 'wrappingType'], [], [], []); Title.displayName = 'Title'; export { Title };