Skip to content

Commit

Permalink
fix: not found components
Browse files Browse the repository at this point in the history
  • Loading branch information
AtelyPham committed Aug 21, 2023
1 parent bb561ab commit 5e12da0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
useReactTable,
} from '@tanstack/react-table';
import { chainsConfig } from '@webb-tools/dapp-config/chains';
import { ShieldKeyholeIcon } from '@webb-tools/icons';
import { ShieldKeyholeLineIcon } from '@webb-tools/icons';
import {
ChainChip,
Table,
Expand All @@ -28,7 +28,7 @@ const staticColumns: ColumnDef<NetworkPoolType, any>[] = [
header: () => null,
cell: (props) => (
<div className="flex items-center gap-1">
<ShieldKeyholeIcon />
<ShieldKeyholeLineIcon />
<Typography
variant="body1"
fw="bold"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useMemo } from 'react';
import {
GridFillIcon,
KeyIcon,
ShieldKeyholeIcon,
ShieldKeyholeLineIcon,
TeamFillIcon,
UserStarFillIcon,
FoldersFillIcon,
Expand Down Expand Up @@ -81,7 +81,7 @@ export const NavBoxInfoContainer = () => {
<BreadcrumbsItem
icon={
currentPage === 'keys' ? (
<ShieldKeyholeIcon />
<ShieldKeyholeLineIcon />
) : currentPage === 'authorities' && subPage !== 'history' ? (
<UserStarFillIcon />
) : currentPage === 'authorities' && subPage === 'history' ? (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { BreadcrumbsSeparator } from './BreadcrumbsSeparator';
* <Breadcrumbs>
* <BreadcrumbsItem icon={<GridFillIcon />}>Tangle Explorer</BreadcrumbsItem>
* <BreadcrumbsItem icon={<KeyIcon />}>Keys Overview</BreadcrumbsItem>
* <BreadcrumbsItem icon={<ShieldKeyholeIcon />} isLast>Keygen details</BreadcrumbsItem>
* <BreadcrumbsItem icon={<ShieldKeyholeLineIcon />} isLast>Keygen details</BreadcrumbsItem>
* <Breadcrumbs />
* ```
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import { Breadcrumbs, BreadcrumbsItem } from '@webb-tools/webb-ui-components';
import { GridFillIcon, KeyIcon, ShieldKeyholeIcon } from '@webb-tools/icons';
import {
GridFillIcon,
KeyIcon,
ShieldKeyholeLineIcon,
} from '@webb-tools/icons';

// More on default export: https://storybook.js.org/docs/react/writing-stories/introduction#default-export
export default {
Expand Down Expand Up @@ -34,7 +38,7 @@ Default.args = {
},
itemTwoChildren: 'Keys Overview',
itemThreeProps: {
icon: <ShieldKeyholeIcon />,
icon: <ShieldKeyholeLineIcon />,
isLast: true,
},
itemThreeChildren: 'Keygen details',
Expand All @@ -51,7 +55,7 @@ CustomSeparator.args = {
},
itemTwoChildren: 'Keys Overview',
itemThreeProps: {
icon: <ShieldKeyholeIcon />,
icon: <ShieldKeyholeLineIcon />,
isLast: true,
},
itemThreeChildren: 'Keygen details',
Expand Down

0 comments on commit 5e12da0

Please sign in to comment.