@@ -4,7 +4,6 @@ import styled from '@emotion/styled';
4
4
import { AnimatePresence , motion } from 'framer-motion' ;
5
5
6
6
import { addErrorMessage , addSuccessMessage } from 'sentry/actionCreators/indicator' ;
7
- import { SeerLoadingIcon , SeerWaitingIcon } from 'sentry/components/ai/SeerIcon' ;
8
7
import { Button } from 'sentry/components/core/button' ;
9
8
import { TextArea } from 'sentry/components/core/textarea' ;
10
9
import { Tooltip } from 'sentry/components/core/tooltip' ;
@@ -16,7 +15,7 @@ import {AutofixStepType} from 'sentry/components/events/autofix/types';
16
15
import { makeAutofixQueryKey } from 'sentry/components/events/autofix/useAutofix' ;
17
16
import { useTypingAnimation } from 'sentry/components/events/autofix/useTypingAnimation' ;
18
17
import { getAutofixRunErrorMessage } from 'sentry/components/events/autofix/utils' ;
19
- import { IconRefresh } from 'sentry/icons' ;
18
+ import { IconRefresh , IconSeer } from 'sentry/icons' ;
20
19
import { t } from 'sentry/locale' ;
21
20
import { space } from 'sentry/styles/space' ;
22
21
import { singleLineRenderer } from 'sentry/utils/marked/marked' ;
@@ -155,7 +154,7 @@ function ActiveLogDisplay({
155
154
return (
156
155
< ActiveLogWrapper >
157
156
< SeerIconContainer >
158
- < SeerWaitingIcon size = "lg" />
157
+ < IconSeer variant = "waiting" size = "lg" />
159
158
</ SeerIconContainer >
160
159
< ActiveLog > { errorMessage } </ ActiveLog >
161
160
< Button
@@ -187,7 +186,7 @@ function ActiveLogDisplay({
187
186
) }
188
187
>
189
188
< SeerIconContainer ref = { seerIconRef } >
190
- < StyledAnimatedSeerIcon size = "lg" />
189
+ < StyledAnimatedSeerIcon variant = "loading" size = "lg" />
191
190
{ seerIconRef ?. current && isInitializingRun && (
192
191
< FlyingLinesEffect targetElement = { seerIconRef . current } />
193
192
) }
@@ -462,7 +461,7 @@ const SeerIconContainer = styled('div')`
462
461
flex-shrink: 0;
463
462
` ;
464
463
465
- const StyledAnimatedSeerIcon = styled ( SeerLoadingIcon ) `
464
+ const StyledAnimatedSeerIcon = styled ( IconSeer ) `
466
465
position: relative;
467
466
transition: opacity 0.2s ease;
468
467
top: 0;
0 commit comments