File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/react-core/src/components/Form Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
import { forwardRef , useRef } from 'react' ;
2
2
import { Button , ButtonProps } from '../Button' ;
3
- import QuestionCircleIcon from '@patternfly/react-icons/dist/esm/icons/question-circle-icon' ;
4
3
import { KeyTypes } from '../../helpers/constants' ;
4
+ import HelpIcon from '@patternfly/react-icons/dist/esm/icons/help-icon' ;
5
5
6
6
/** A help button to be passed to the FormGroup's labelHelp property. This should be wrapped or linked
7
7
* to our Popover component.
@@ -45,7 +45,7 @@ const FormGroupLabelHelpBase: React.FunctionComponent<FormGroupLabelHelpProps> =
45
45
variant = "plain"
46
46
hasNoPadding
47
47
{ ...props }
48
- icon = { < QuestionCircleIcon /> }
48
+ icon = { < HelpIcon /> }
49
49
/>
50
50
) ;
51
51
} ;
You can’t perform that action at this time.
0 commit comments