mod-arch-shared
Version:
Shared UI components and utilities for modular architecture micro-frontend projects
8 lines • 582 B
JavaScript
import * as React from 'react';
import { Popover } from '@patternfly/react-core';
import { OutlinedQuestionCircleIcon } from '@patternfly/react-icons';
import DashboardPopupIconButton from '../components/dashboard/DashboardPopupIconButton';
const FieldGroupHelpLabelIcon = ({ content }) => (React.createElement(Popover, { bodyContent: content },
React.createElement(DashboardPopupIconButton, { icon: React.createElement(OutlinedQuestionCircleIcon, null), "aria-label": "More info" })));
export default FieldGroupHelpLabelIcon;
//# sourceMappingURL=FieldGroupHelpLabelIcon.js.map