@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
13 lines (12 loc) • 538 B
JavaScript
'use client';
import { withWebComponent } from '@ui5/webcomponents-react-base';
/**
* Tokens are small items of information (similar to tags) that mainly serve to visualize previously selected items.
*
*
*
* __Note:__ This is a UI5 Web Component! [Token UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/Token) | [Repository](https://github.com/UI5/webcomponents)
*/
const Token = withWebComponent('ui5-token', ['text'], ['selected'], ['closeIcon'], []);
Token.displayName = 'Token';
export { Token };