From b427bdbbdc1af4df478a0848c07bf41ebc242d26 Mon Sep 17 00:00:00 2001 From: Jan Hassel Date: Mon, 13 Jan 2020 09:36:03 +0100 Subject: [PATCH] fix(InlineLoading): change error icon to filled --- packages/react/src/components/InlineLoading/InlineLoading.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react/src/components/InlineLoading/InlineLoading.js b/packages/react/src/components/InlineLoading/InlineLoading.js index eb7b1c3ce254..f12b311a56b8 100644 --- a/packages/react/src/components/InlineLoading/InlineLoading.js +++ b/packages/react/src/components/InlineLoading/InlineLoading.js @@ -8,7 +8,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; -import { CheckmarkFilled16, Error20 } from '@carbon/icons-react'; +import { CheckmarkFilled16, ErrorFilled16 } from '@carbon/icons-react'; import { settings } from 'carbon-components'; import deprecate from '../../prop-types/deprecate'; import Loading from '../Loading'; @@ -28,7 +28,7 @@ export default function InlineLoading({ const loadingClasses = classNames(`${prefix}--inline-loading`, className); const getLoading = () => { if (status === 'error') { - return ; + return ; } if (status === 'finished') { setTimeout(() => {