diff --git a/src/components/Svg/Icons/Metamask.tsx b/src/components/Svg/Icons/Metamask.tsx new file mode 100644 index 000000000..2c8a599a4 --- /dev/null +++ b/src/components/Svg/Icons/Metamask.tsx @@ -0,0 +1,75 @@ +import React from "react"; +import Svg from "../Svg"; +import { SvgProps } from "../types"; + +const Icon: React.FC = (props) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; + +export default Icon; diff --git a/src/components/Svg/index.tsx b/src/components/Svg/index.tsx index 3863d2dff..80e8a6482 100644 --- a/src/components/Svg/index.tsx +++ b/src/components/Svg/index.tsx @@ -26,6 +26,7 @@ export { default as InfoIcon } from "./Icons/Info"; export { default as ListViewIcon } from "./Icons/ListView"; export { default as LogoIcon } from "./Icons/Logo"; export { default as LogoRoundIcon } from "./Icons/LogoRound"; +export { default as MetamaskIcon } from "./Icons/Metamask"; export { default as MinusIcon } from "./Icons/Minus"; export { default as NoProfileAvatarIcon } from "./Icons/NoProfileAvatar"; export { default as OpenNewIcon } from "./Icons/OpenNew";