Skip to content

Commit

Permalink
Merge pull request #342 from yearn/feat/chain-icon
Browse files Browse the repository at this point in the history
feat(ChainIcon): Add chain icon
  • Loading branch information
Majorfi committed Sep 22, 2023
2 parents 765fb69 + 59c8d3d commit ffcaefc
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 100 deletions.
24 changes: 24 additions & 0 deletions src/icons/IconChain.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import React from 'react';

import type {ReactElement} from 'react';

export function IconChain(props: React.SVGProps<SVGSVGElement>): ReactElement {
return (
<svg
width={'24'}
height={'24'}
viewBox={'0 0 24 24'}
fill={'none'}
xmlns={'http://www.w3.org/2000/svg'}
{...props}>
<path
fill={'#5B5B5B'}
d={'M11.53 12.47a3.318 3.318 0 004.693 0l2.815-2.816a3.317 3.317 0 10-4.692-4.692l-2.111 2.111a.992.992 0 01-1.408 0 .995.995 0 010-1.407l2.111-2.111a5.308 5.308 0 117.507 7.507l-2.815 2.815a5.308 5.308 0 01-7.928-.475.745.745 0 01-.16-.443.843.843 0 01.187-.555.917.917 0 01.074-.084l.02-.019c.455-.456 1.252-.287 1.708.168z'}
/>
<path
fill={'#5B5B5B'}
d={'M7.777 11.53l-2.815 2.816a3.317 3.317 0 104.692 4.692l2.111-2.111a.995.995 0 011.408 1.407l-2.111 2.111a5.308 5.308 0 01-7.507-7.507l2.815-2.815a5.308 5.308 0 017.846.373l.082.101c.257.327.193.788-.1 1.083l-.02.019c-.456.456-1.254.287-1.709-.168a3.318 3.318 0 00-4.692 0z'}
/>
</svg>
);
}
20 changes: 0 additions & 20 deletions src/icons/IconNetworkArbitrum.tsx

This file was deleted.

20 changes: 0 additions & 20 deletions src/icons/IconNetworkBase.tsx

This file was deleted.

20 changes: 0 additions & 20 deletions src/icons/IconNetworkEthereum.tsx

This file was deleted.

20 changes: 0 additions & 20 deletions src/icons/IconNetworkFantom.tsx

This file was deleted.

20 changes: 0 additions & 20 deletions src/icons/IconNetworkOptimism.tsx

This file was deleted.

0 comments on commit ffcaefc

Please sign in to comment.