diff --git a/packages/components/docs/sass.md b/packages/components/docs/sass.md index 2dc80deaf1f6..6a0d04f2f22e 100644 --- a/packages/components/docs/sass.md +++ b/packages/components/docs/sass.md @@ -20476,10 +20476,13 @@ Progress indicator styles } .#{$prefix}--progress-step--current svg { - width: 14px; - height: 14px; + stroke: $interactive-01; fill: $interactive-01; margin-top: rem(9.5px); + + path:last-of-type { + stroke-width: 40%; + } } //INCOMPLETE STYLING diff --git a/packages/components/src/components/progress-indicator/_progress-indicator.scss b/packages/components/src/components/progress-indicator/_progress-indicator.scss index e461c30eb2c7..7b8305024fc9 100644 --- a/packages/components/src/components/progress-indicator/_progress-indicator.scss +++ b/packages/components/src/components/progress-indicator/_progress-indicator.scss @@ -143,10 +143,12 @@ } .#{$prefix}--progress-step--current svg { - width: 14px; - height: 14px; + stroke: $interactive-01; fill: $interactive-01; - margin-top: rem(9.5px); + + path:last-of-type { + stroke-width: 40%; + } } //INCOMPLETE STYLING diff --git a/packages/react/src/components/ProgressIndicator/ProgressIndicator.js b/packages/react/src/components/ProgressIndicator/ProgressIndicator.js index 6ec5ee36afd8..f974a8d50c6d 100644 --- a/packages/react/src/components/ProgressIndicator/ProgressIndicator.js +++ b/packages/react/src/components/ProgressIndicator/ProgressIndicator.js @@ -9,7 +9,12 @@ import PropTypes from 'prop-types'; import React, { Component } from 'react'; import classnames from 'classnames'; import { settings } from 'carbon-components'; -import { CheckmarkOutline16, Warning16 } from '@carbon/icons-react'; +import { + CheckmarkOutline16, + Warning16, + RadioButtonChecked16, + RadioButton16, +} from '@carbon/icons-react'; import { keys, matches } from '../../internal/keyboard'; const { prefix } = settings; @@ -61,10 +66,9 @@ export function ProgressStep({ } if (current) { return ( - - + {description} - + ); } if (complete) { @@ -75,10 +79,9 @@ export function ProgressStep({ ); } return ( - + {description} - - + ); };