loading.tsx 343 B

1234567891011121314
  1. import { ChartLine } from "@phosphor-icons/react/dist/ssr/ChartLine";
  2. import { TableCard } from "@pythnetwork/component-library/TableCard";
  3. import { columns } from "./columns";
  4. export const PriceFeedsLoading = () => (
  5. <TableCard
  6. label="Price Feeds"
  7. icon={ChartLine}
  8. columns={columns}
  9. isLoading={true}
  10. rows={[]}
  11. />
  12. );