Sha256: 7cd2e2070ee8d4306433bb9d83d30315c284655da82798d70580e283c2785980
Contents?: true
Size: 629 Bytes
Versions: 49
Compression:
Stored size: 629 Bytes
Contents
import React from 'react'; import { translate as __ } from 'foremanReact/common/I18n'; import { Tooltip } from '@patternfly/react-core'; import { InfoCircleIcon } from '@patternfly/react-icons'; const OrderedRolesTooltip = props => { const content = ( <span> {__( 'Use drag and drop to change order of the roles. Ordering of roles is respected for Ansible runs, inherited roles are always before those assigned directly' )} </span> ); return ( <Tooltip content={content}> <InfoCircleIcon style={{ marginRight: '10px' }} /> </Tooltip> ); }; export default OrderedRolesTooltip;
Version data entries
49 entries across 49 versions & 1 rubygems