diff --git a/packages/gestalt-icons-android/src/vr-theme/compact/ic_vr_compact-sparkle.svg b/packages/gestalt-icons-android/src/vr-theme/compact/ic_vr_compact-sparkle.svg new file mode 100644 index 0000000000..3a5032798e --- /dev/null +++ b/packages/gestalt-icons-android/src/vr-theme/compact/ic_vr_compact-sparkle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/gestalt-icons-android/src/vr-theme/compact/index.ts b/packages/gestalt-icons-android/src/vr-theme/compact/index.ts index af6f23c697..73496a4e97 100644 --- a/packages/gestalt-icons-android/src/vr-theme/compact/index.ts +++ b/packages/gestalt-icons-android/src/vr-theme/compact/index.ts @@ -10,6 +10,7 @@ import compactChevronUp from './ic_vr_compact-chevron-up_gestalt.svg'; import compactDash from './ic_vr_compact-dash_gestalt.svg'; import compactInfoCircleFill from './ic_vr_compact-info-circle-fill_gestalt.svg'; import compactLock from './ic_vr_compact-lock_gestalt.svg'; +import compactSparkle from './ic_vr_compact-sparkle.svg'; import compactWorkflowStatusProblem from './ic_vr_compact-workflow-status-problem_gestalt.svg'; import compactWorkflowStatusWarning from './ic_vr_compact-workflow-status-warning_gestalt.svg'; @@ -28,6 +29,7 @@ const icons = Object.freeze({ 'compact-lock': compactLock, 'compact-workflow-status-problem': compactWorkflowStatusProblem, 'compact-workflow-status-warning': compactWorkflowStatusWarning, + 'compact-sparkle': compactSparkle, }); export default icons; diff --git a/packages/gestalt/src/Accordion/__snapshots__/ExpandableItem.test.tsx.snap b/packages/gestalt/src/Accordion/__snapshots__/ExpandableItem.test.tsx.snap index 2dbd6e41ab..b83eaea2c7 100644 --- a/packages/gestalt/src/Accordion/__snapshots__/ExpandableItem.test.tsx.snap +++ b/packages/gestalt/src/Accordion/__snapshots__/ExpandableItem.test.tsx.snap @@ -155,7 +155,7 @@ exports[`AccordionExpandableItem renders correctly with badge 1`] = ` } >
{shouldUseTooltip ? ( - ['icon']} - inline - size={isInVRExperiment ? '12' : '14'} - /> + {isInVRExperiment ? ( + ['icon']} + inline + size="12" + /> + ) : ( + ['icon']} + inline + size="14" + /> + )} ) : null} diff --git a/packages/gestalt/src/__snapshots__/Accordion.test.tsx.snap b/packages/gestalt/src/__snapshots__/Accordion.test.tsx.snap index 2514c33cef..a5b4aff066 100644 --- a/packages/gestalt/src/__snapshots__/Accordion.test.tsx.snap +++ b/packages/gestalt/src/__snapshots__/Accordion.test.tsx.snap @@ -51,7 +51,7 @@ exports[`Accordion renders a badge correctly 1`] = ` } >
\ No newline at end of file diff --git a/packages/gestalt/src/icons-vr-theme/compact/index.ts b/packages/gestalt/src/icons-vr-theme/compact/index.ts index f810ee2f4d..cbd516adc4 100644 --- a/packages/gestalt/src/icons-vr-theme/compact/index.ts +++ b/packages/gestalt/src/icons-vr-theme/compact/index.ts @@ -10,6 +10,7 @@ import compactChevronUp from './compact-chevron-up.svg'; import compactDash from './compact-dash.svg'; import compactInfoCircleFill from './compact-info-circle-fill.svg'; import compactLock from './compact-lock.svg'; +import compactSparkle from './compact-sparkle.svg'; import compactWorkflowStatusProblem from './compact-workflow-status-problem.svg'; import compactWorkflowStatusWarning from './compact-workflow-status-warning.svg'; @@ -26,6 +27,7 @@ const icons = Object.freeze({ 'compact-dash': compactDash, 'compact-info-circle-fill': compactInfoCircleFill, 'compact-lock': compactLock, + 'compact-sparkle': compactSparkle, 'compact-workflow-status-problem': compactWorkflowStatusProblem, 'compact-workflow-status-warning': compactWorkflowStatusWarning, });