We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39bee0f commit 6a8d26aCopy full SHA for 6a8d26a
static/app/views/performance/newTraceDetails/traceRow/traceIcons.tsx
@@ -1,5 +1,4 @@
1
import {Fragment, useMemo} from 'react';
2
-import styled from '@emotion/styled';
3
import clamp from 'lodash/clamp';
4
import {PlatformIcon} from 'platformicons';
5
@@ -107,10 +106,5 @@ export function SpanProjectIcon({platform}: {platform: string}) {
107
106
return null;
108
}
109
110
- return <FaintProjectIcon platform={platform} />;
+ return <PlatformIcon platform={platform} />;
111
112
-
113
-const FaintProjectIcon = styled(PlatformIcon)`
114
- opacity: 0.2;
115
- filter: grayscale(1);
116
-`;
0 commit comments