@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
14 lines (13 loc) • 565 B
JavaScript
'use client';
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 };