From e77d1f8b6911428bf4ead8fcffa9902fc12a1ef6 Mon Sep 17 00:00:00 2001 From: SrGooglo Date: Mon, 23 Jan 2023 23:14:42 +0000 Subject: [PATCH] added simple icons bundle --- packages/app/src/components/Icons/index.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/app/src/components/Icons/index.jsx b/packages/app/src/components/Icons/index.jsx index 0e09397e..fc6f3011 100755 --- a/packages/app/src/components/Icons/index.jsx +++ b/packages/app/src/components/Icons/index.jsx @@ -4,6 +4,7 @@ import React from "react" import * as lib1 from "feather-reactjs" import * as lib2 from "react-icons/md" import * as lib3 from "@ant-design/icons" +import * as lib4 from "react-icons/si" const marginedStyle = { width: "1em", height: "1em", marginRight: "10px", verticalAlign: "-0.125em" } @@ -16,6 +17,7 @@ export const Icons = { ...lib1, ...lib2, ...lib3, + ...lib4, } export function createIconRender(icon, props) {