We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4c999c commit da565c3Copy full SHA for da565c3
1 file changed
packages/react-core/src/components/Form/FormGroupLabelHelp.tsx
@@ -1,7 +1,7 @@
1
import { forwardRef, useRef } from 'react';
2
import { Button, ButtonProps } from '../Button';
3
-import QuestionCircleIcon from '@patternfly/react-icons/dist/esm/icons/question-circle-icon';
4
import { KeyTypes } from '../../helpers/constants';
+import HelpIcon from '@patternfly/react-icons/dist/esm/icons/help-icon';
5
6
/** A help button to be passed to the FormGroup's labelHelp property. This should be wrapped or linked
7
* to our Popover component.
@@ -45,7 +45,7 @@ const FormGroupLabelHelpBase: React.FunctionComponent<FormGroupLabelHelpProps> =
45
variant="plain"
46
hasNoPadding
47
{...props}
48
- icon={<QuestionCircleIcon />}
+ icon={<HelpIcon />}
49
/>
50
);
51
};
0 commit comments