Skip to content

Commit 5e31c44

Browse files
committed
fix: ic-info-filled icon
1 parent fb9e2dc commit 5e31c44

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

src/Shared/Components/FormFieldWrapper/FormFieldInfo.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,7 @@ const FormFieldInfo = ({ error, helperText, warningText, inputId }: FormFieldInf
2929
<div className="flex left column dc__gap-4">
3030
{!!error && <FormInfoItem text={error} icon="ic-error" textClass="cr-5" id={getFormErrorElementId(inputId)} />}
3131
{!!helperText && (
32-
<FormInfoItem
33-
text={helperText}
34-
icon="ic-info-filled-override"
35-
textClass="cn-7"
36-
id={`${inputId}-helper-text`}
37-
/>
32+
<FormInfoItem text={helperText} icon="ic-info-filled" textClass="cn-7" id={`${inputId}-helper-text`} />
3833
)}
3934
{!!warningText && (
4035
<FormInfoItem text={warningText} icon="ic-warning" textClass="cy-7" id={`${inputId}-warning-msg`} />

src/Shared/Components/Icon/Icon.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { ReactComponent as ICHeartRed } from '@IconsV2/ic-heart-red.svg'
2828
import { ReactComponent as ICHelpOutline } from '@IconsV2/ic-help-outline.svg'
2929
import { ReactComponent as ICHibernate } from '@IconsV2/ic-hibernate.svg'
3030
import { ReactComponent as ICInProgress } from '@IconsV2/ic-in-progress.svg'
31-
import { ReactComponent as ICInfoFilledOverride } from '@IconsV2/ic-info-filled-override.svg'
31+
import { ReactComponent as ICInfoFilled } from '@IconsV2/ic-info-filled.svg'
3232
import { ReactComponent as ICInfoOutline } from '@IconsV2/ic-info-outline.svg'
3333
import { ReactComponent as ICJobColor } from '@IconsV2/ic-job-color.svg'
3434
import { ReactComponent as ICMissing } from '@IconsV2/ic-missing.svg'
@@ -76,7 +76,7 @@ export const iconMap = {
7676
'ic-help-outline': ICHelpOutline,
7777
'ic-hibernate': ICHibernate,
7878
'ic-in-progress': ICInProgress,
79-
'ic-info-filled-override': ICInfoFilledOverride,
79+
'ic-info-filled': ICInfoFilled,
8080
'ic-info-outline': ICInfoOutline,
8181
'ic-job-color': ICJobColor,
8282
'ic-missing': ICMissing,

0 commit comments

Comments
 (0)