From 34277f238c484f421cf5a7fbd2d1cbe8553f8097 Mon Sep 17 00:00:00 2001 From: Deluan Date: Mon, 23 Jan 2023 10:22:11 -0500 Subject: [PATCH] Make Share icon dynamic --- ui/src/share/index.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ui/src/share/index.js b/ui/src/share/index.js index 033e448f8..95237fb04 100644 --- a/ui/src/share/index.js +++ b/ui/src/share/index.js @@ -1,9 +1,18 @@ import ShareList from './ShareList' import { ShareEdit } from './ShareEdit' import ShareIcon from '@material-ui/icons/Share' +import ShareOutlinedIcon from '@material-ui/icons/ShareOutlined' +import DynamicMenuIcon from '../layout/DynamicMenuIcon' +import React from 'react' export default { list: ShareList, edit: ShareEdit, - icon: , + icon: ( + + ), }