@@ -8,6 +8,7 @@ import { NoResults } from "@pythnetwork/component-library/NoResults";
8
8
import { Paginator } from "@pythnetwork/component-library/Paginator" ;
9
9
import { SearchInput } from "@pythnetwork/component-library/SearchInput" ;
10
10
import { Select } from "@pythnetwork/component-library/Select" ;
11
+ import { SymbolPairTag } from "@pythnetwork/component-library/SymbolPairTag" ;
11
12
import type {
12
13
RowConfig ,
13
14
SortDescriptor ,
@@ -30,7 +31,6 @@ import {
30
31
LiveValue ,
31
32
SKELETON_WIDTH ,
32
33
} from "../LivePrices" ;
33
- import { PriceFeedTag } from "../PriceFeedTag" ;
34
34
import { PriceName } from "../PriceName" ;
35
35
import styles from "./price-feeds-card.module.scss" ;
36
36
@@ -137,7 +137,7 @@ const ResolvedPriceFeedsCard = ({ priceFeeds, ...props }: Props) => {
137
137
< LiveConfidence feedKey = { key } cluster = { Cluster . Pythnet } />
138
138
) ,
139
139
priceFeedName : (
140
- < PriceFeedTag
140
+ < SymbolPairTag
141
141
description = { description }
142
142
displaySymbol = { displaySymbol }
143
143
icon = { icon }
@@ -296,7 +296,7 @@ const PriceFeedsCardContents = ({ id, ...props }: PriceFeedsCardContents) => (
296
296
< EntityList
297
297
label = "Price Feeds"
298
298
className = { styles . entityList ?? "" }
299
- headerLoadingSkeleton = { < PriceFeedTag isLoading /> }
299
+ headerLoadingSkeleton = { < SymbolPairTag isLoading /> }
300
300
fields = { [
301
301
{ id : "assetClass" , name : "Asset Class" } ,
302
302
{ id : "priceFeedId" , name : "Price Feed ID" } ,
@@ -331,7 +331,7 @@ const PriceFeedsCardContents = ({ id, ...props }: PriceFeedsCardContents) => (
331
331
name : "PRICE FEED" ,
332
332
isRowHeader : true ,
333
333
alignment : "left" ,
334
- loadingSkeleton : < PriceFeedTag isLoading /> ,
334
+ loadingSkeleton : < SymbolPairTag isLoading /> ,
335
335
allowsSorting : true ,
336
336
} ,
337
337
{
0 commit comments