From 0a65bf171b60956c682dd89ef5bb5cd3e1ad9148 Mon Sep 17 00:00:00 2001 From: Deluan Date: Mon, 16 Jan 2023 20:51:18 -0500 Subject: [PATCH] Change Players icon, to distinguish it from Internet Radios --- ui/src/player/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/player/index.js b/ui/src/player/index.js index 823df0103..aaa3d58d7 100644 --- a/ui/src/player/index.js +++ b/ui/src/player/index.js @@ -1,9 +1,9 @@ -import RadioIcon from '@material-ui/icons/Radio' +import { BsFillMusicPlayerFill } from 'react-icons/bs' import PlayerList from './PlayerList' import PlayerEdit from './PlayerEdit' export default { list: PlayerList, edit: PlayerEdit, - icon: RadioIcon, + icon: BsFillMusicPlayerFill, }