UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

14 lines (13 loc) 806 B
'use client'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * A component to be used as custom list item within the `List` * the same way as the standard `ListItemStandard`. * * The component accepts arbitrary HTML content to allow full customization. * * __Note:__ This is a UI5 Web Component! [ListItemCustom UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/ListItemCustom) | [Repository](https://github.com/UI5/webcomponents) */ const ListItemCustom = withWebComponent('ui5-li-custom', ['accessibilityAttributes', 'accessibleName', 'accessibleRole', 'highlight', 'tooltip', 'type'], ['movable', 'navigated', 'selected'], ['deleteButton'], ['click', 'detail-click']); ListItemCustom.displayName = 'ListItemCustom'; export { ListItemCustom };