Skip to content

Commit fdd5256

Browse files
authored
chore(form): update use of help icon (#11780)
1 parent 54485ae commit fdd5256

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react-core/src/components/Form/FormGroupLabelHelp.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { forwardRef, useRef } from 'react';
22
import { Button, ButtonProps } from '../Button';
3-
import QuestionCircleIcon from '@patternfly/react-icons/dist/esm/icons/question-circle-icon';
43
import { KeyTypes } from '../../helpers/constants';
4+
import HelpIcon from '@patternfly/react-icons/dist/esm/icons/help-icon';
55

66
/** A help button to be passed to the FormGroup's labelHelp property. This should be wrapped or linked
77
* to our Popover component.
@@ -45,7 +45,7 @@ const FormGroupLabelHelpBase: React.FunctionComponent<FormGroupLabelHelpProps> =
4545
variant="plain"
4646
hasNoPadding
4747
{...props}
48-
icon={<QuestionCircleIcon />}
48+
icon={<HelpIcon />}
4949
/>
5050
);
5151
};

0 commit comments

Comments
 (0)