UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

18 lines (17 loc) 1.1 kB
'use client'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * The `UserSettingsAppearanceViewItem` represents a theme/appearance option item * within the `UserSettingsAppearanceView`. * * It displays a theme with an avatar icon, text label, and can be selected. * * * * __Note:__ This is a UI5 Web Component! [UserSettingsAppearanceViewItem UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/fiori/UserSettingsAppearanceViewItem) | [Repository](https://github.com/UI5/webcomponents) * * @since [2.17.0](https://github.com/UI5/webcomponents/releases/tag/v2.17.0) of __@ui5/webcomponents-fiori__. */ const UserSettingsAppearanceViewItem = withWebComponent('ui5-user-settings-appearance-view-item', ['accessibilityAttributes', 'accessibleName', 'accessibleRole', 'colorScheme', 'highlight', 'icon', 'itemKey', 'text', 'tooltip', 'type'], ['movable', 'navigated', 'selected'], ['deleteButton'], ['click', 'detail-click']); UserSettingsAppearanceViewItem.displayName = 'UserSettingsAppearanceViewItem'; export { UserSettingsAppearanceViewItem };