@@ -19,7 +19,6 @@ import { useLocation, useParams, useRouteMatch, Link } from 'react-router-dom'
19
19
import { getHandleOpenURL } from '@Shared/Helpers'
20
20
import { ImageChipCell } from '@Shared/Components/ImageChipCell'
21
21
import { CommitChipCell } from '@Shared/Components/CommitChipCell'
22
- import { ReactComponent as ICSuccess } from '@Icons/ic-success.svg'
23
22
import { ReactComponent as ICPulsateStatus } from '@Icons/ic-pulsate-status.svg'
24
23
import { ReactComponent as ICAborted } from '@Icons/ic-aborted.svg'
25
24
import { ReactComponent as ICArrowRight } from '@Icons/ic-arrow-right.svg'
@@ -59,6 +58,7 @@ import { GitTriggers } from '../../types'
59
58
import { ConfirmationModal , ConfirmationModalVariantType } from '../ConfirmationModal'
60
59
import WorkerStatus from './WorkerStatus'
61
60
import { Button , ButtonStyleType , ButtonVariantType } from '../Button'
61
+ import { Icon } from '../Icon'
62
62
63
63
const Finished = memo ( ( { status, finishedOn, artifact, type, executionInfo } : FinishedType ) : JSX . Element => {
64
64
const finishedOnTime = executionInfo ?. finishedOn || finishedOn
@@ -382,7 +382,7 @@ const renderBlockWithBorder = () => (
382
382
const renderDetailsSuccessIconBlock = ( ) => (
383
383
< >
384
384
< div className = "flex" >
385
- < ICSuccess className = "icon-dim-20" />
385
+ < Icon size = { 20 } name = "ic-success" color = { null } />
386
386
</ div >
387
387
388
388
{ renderBlockWithBorder ( ) }
0 commit comments