@@ -8,6 +8,7 @@ import { NoResults } from "@pythnetwork/component-library/NoResults";
88import { Paginator } from "@pythnetwork/component-library/Paginator" ;
99import { SearchInput } from "@pythnetwork/component-library/SearchInput" ;
1010import { Select } from "@pythnetwork/component-library/Select" ;
11+ import { SymbolPairTag } from "@pythnetwork/component-library/SymbolPairTag" ;
1112import type {
1213 RowConfig ,
1314 SortDescriptor ,
@@ -30,7 +31,6 @@ import {
3031 LiveValue ,
3132 SKELETON_WIDTH ,
3233} from "../LivePrices" ;
33- import { PriceFeedTag } from "../PriceFeedTag" ;
3434import { PriceName } from "../PriceName" ;
3535import styles from "./price-feeds-card.module.scss" ;
3636
@@ -137,7 +137,7 @@ const ResolvedPriceFeedsCard = ({ priceFeeds, ...props }: Props) => {
137137 < LiveConfidence feedKey = { key } cluster = { Cluster . Pythnet } />
138138 ) ,
139139 priceFeedName : (
140- < PriceFeedTag
140+ < SymbolPairTag
141141 description = { description }
142142 displaySymbol = { displaySymbol }
143143 icon = { icon }
@@ -296,7 +296,7 @@ const PriceFeedsCardContents = ({ id, ...props }: PriceFeedsCardContents) => (
296296 < EntityList
297297 label = "Price Feeds"
298298 className = { styles . entityList ?? "" }
299- headerLoadingSkeleton = { < PriceFeedTag isLoading /> }
299+ headerLoadingSkeleton = { < SymbolPairTag isLoading /> }
300300 fields = { [
301301 { id : "assetClass" , name : "Asset Class" } ,
302302 { id : "priceFeedId" , name : "Price Feed ID" } ,
@@ -331,7 +331,7 @@ const PriceFeedsCardContents = ({ id, ...props }: PriceFeedsCardContents) => (
331331 name : "PRICE FEED" ,
332332 isRowHeader : true ,
333333 alignment : "left" ,
334- loadingSkeleton : < PriceFeedTag isLoading /> ,
334+ loadingSkeleton : < SymbolPairTag isLoading /> ,
335335 allowsSorting : true ,
336336 } ,
337337 {
0 commit comments