Skip to content

Commit 84cf72a

Browse files
authored
Update Libraries.tsx - Add Elixir Ethers
1 parent 9686d4e commit 84cf72a

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

app/src/components/Libraries.tsx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Link from 'next/link';
22
import { ReactNode } from 'react';
33
import { FaJava, FaReact, FaRust } from 'react-icons/fa';
4-
import { SiDelphi, SiKotlin, SiNuget, SiPython } from 'react-icons/si';
4+
import { SiDelphi, SiElixir, SiKotlin, SiNuget, SiPython } from 'react-icons/si';
55
import { TbBrandGolang, TbBrandJavascript } from 'react-icons/tb';
66

77
type Language = {
@@ -165,6 +165,18 @@ export const ensLibraries: Language[] = [
165165
},
166166
],
167167
},
168+
{
169+
name: 'Elixir',
170+
logo: <SiElixir />,
171+
libraries: [
172+
{
173+
href: 'https://github.com/ExWeb3/elixir_ethers',
174+
name: 'Ethers',
175+
description: '',
176+
logo: undefined, // -
177+
},
178+
],
179+
},
168180
];
169181

170182
export function Libraries() {

0 commit comments

Comments
 (0)