Commit 2f9ffa6 1 parent fd62200 commit 2f9ffa6 Copy full SHA for 2f9ffa6
File tree 1 file changed +2
-2
lines changed
packages/react/src/components/InlineLoading
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 8
8
import React from 'react' ;
9
9
import PropTypes from 'prop-types' ;
10
10
import classNames from 'classnames' ;
11
- import { CheckmarkFilled16 , Error20 } from '@carbon/icons-react' ;
11
+ import { CheckmarkFilled16 , ErrorFilled16 } from '@carbon/icons-react' ;
12
12
import { settings } from 'carbon-components' ;
13
13
import deprecate from '../../prop-types/deprecate' ;
14
14
import Loading from '../Loading' ;
@@ -28,7 +28,7 @@ export default function InlineLoading({
28
28
const loadingClasses = classNames ( `${ prefix } --inline-loading` , className ) ;
29
29
const getLoading = ( ) => {
30
30
if ( status === 'error' ) {
31
- return < Error20 className = { `${ prefix } --inline-loading--error` } /> ;
31
+ return < ErrorFilled16 className = { `${ prefix } --inline-loading--error` } /> ;
32
32
}
33
33
if ( status === 'finished' ) {
34
34
setTimeout ( ( ) => {
You can’t perform that action at this time.
0 commit comments