Skip to content

Commit

Permalink
fix(react): update icons for progress indicator (#10291)
Browse files Browse the repository at this point in the history
  • Loading branch information
abbeyhrt authored Dec 15, 2021
1 parent 95e4f85 commit 6235f2a
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import classnames from 'classnames';
import {
CheckmarkOutline16,
Warning16,
RadioButton16,
CircleFilled16,
CircleDash16,
Incomplete16,
} from '@carbon/icons-react';
import { keys, matches } from '../../internal/keyboard';
import { usePrefix, PrefixContext } from '../../internal/usePrefix';
Expand Down Expand Up @@ -71,9 +71,9 @@ export function ProgressStep({
}
if (current) {
return (
<CircleFilled16>
<Incomplete16>
<title>{description}</title>
</CircleFilled16>
</Incomplete16>
);
}
if (complete) {
Expand All @@ -84,9 +84,9 @@ export function ProgressStep({
);
}
return (
<RadioButton16>
<CircleDash16>
<title>{description}</title>
</RadioButton16>
</CircleDash16>
);
};

Expand Down

0 comments on commit 6235f2a

Please sign in to comment.