diff --git a/packages/react-core/src/components/Form/FormGroupLabelHelp.tsx b/packages/react-core/src/components/Form/FormGroupLabelHelp.tsx index 0f14870d671..0fe3089eac7 100644 --- a/packages/react-core/src/components/Form/FormGroupLabelHelp.tsx +++ b/packages/react-core/src/components/Form/FormGroupLabelHelp.tsx @@ -1,7 +1,7 @@ import { forwardRef, useRef } from 'react'; import { Button, ButtonProps } from '../Button'; -import QuestionCircleIcon from '@patternfly/react-icons/dist/esm/icons/question-circle-icon'; import { KeyTypes } from '../../helpers/constants'; +import HelpIcon from '@patternfly/react-icons/dist/esm/icons/help-icon'; /** A help button to be passed to the FormGroup's labelHelp property. This should be wrapped or linked * to our Popover component. @@ -45,7 +45,7 @@ const FormGroupLabelHelpBase: React.FunctionComponent = variant="plain" hasNoPadding {...props} - icon={} + icon={} /> ); };