Skip to content

Commit 86e54ff

Browse files
authored
Merge pull request #300 from opengovern/ui-changes
feat:change icons
2 parents 32fa1a3 + a605e48 commit 86e54ff

File tree

1 file changed

+11
-11
lines changed
  • services/webui/src/components/Layout/Sidebar

1 file changed

+11
-11
lines changed

services/webui/src/components/Layout/Sidebar/index.tsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {
2525
CommandLineIcon,
2626
UserIcon,
2727
} from '@heroicons/react/24/outline'
28-
import { RiChatSmileAiLine, RiChatSmileLine } from '@remixicon/react'
28+
import { RiAdminLine, RiChatSmileAiLine, RiChatSmileLine, RiFileWarningFill, RiHome2Line, RiPuzzleLine, RiRefreshLine, RiRobot2Line, RiShieldCheckLine, RiSlideshowLine, RiTaskLine, RiTerminalBoxLine } from '@remixicon/react'
2929
import { useAtom, useAtomValue, useSetAtom } from 'jotai'
3030
import { Popover, Transition } from '@headlessui/react'
3131
import { Fragment, useEffect, useState } from 'react'
@@ -207,19 +207,19 @@ export default function Sidebar({ currentPage }: ISidebar) {
207207
{
208208
name: 'Overview',
209209
page: '',
210-
icon: Squares2X2Icon,
210+
icon: RiHome2Line,
211211
isPreview: false,
212212
},
213213

214214
{
215215
name: 'CloudQL',
216216
page: ['cloudql', 'cloudql'],
217-
icon: MagnifyingGlassIcon,
217+
icon: RiTerminalBoxLine,
218218
isPreview: false,
219219
},
220220
{
221221
name: 'Compliance',
222-
icon: ShieldCheckIcon,
222+
icon: RiShieldCheckLine,
223223
page: [
224224
'compliance',
225225
'compliance/:benchmarkId',
@@ -234,7 +234,7 @@ export default function Sidebar({ currentPage }: ISidebar) {
234234

235235
{
236236
name: 'All Incidents',
237-
icon: DocumentMagnifyingGlassIcon,
237+
icon: RiFileWarningFill,
238238
page: [
239239
'incidents',
240240
'incidents/summary',
@@ -251,7 +251,7 @@ export default function Sidebar({ currentPage }: ISidebar) {
251251
'plugins/Azure',
252252
'plugins/EntraID',
253253
],
254-
icon: PuzzlePieceIcon,
254+
icon: RiPuzzleLine,
255255
isLoading: false,
256256
// count: 0,
257257

@@ -263,26 +263,26 @@ export default function Sidebar({ currentPage }: ISidebar) {
263263
{
264264
name: 'Jobs',
265265
page: 'jobs',
266-
icon: CalendarDateRangeIcon,
266+
icon: RiTaskLine,
267267
isPreview: false,
268268
},
269269
{
270270
name: 'Administration',
271271
page: ['administration'],
272-
icon: Cog6ToothIcon,
272+
icon: RiAdminLine,
273273
isPreview: false,
274274
},
275275
{
276276
name: 'Agent AI',
277277
page: 'ai',
278-
icon: RiChatSmileAiLine,
278+
icon: RiRobot2Line,
279279
isPreview: true,
280280
},
281281

282282
{
283283
name: 'Automation',
284284
page: 'automation',
285-
icon: BoltIcon,
285+
icon: RiRefreshLine,
286286
isPreview: true,
287287
},
288288
{
@@ -296,7 +296,7 @@ export default function Sidebar({ currentPage }: ISidebar) {
296296
'dashboards/spend-accounts',
297297
'dashboards/spend-metrics',
298298
],
299-
icon: PresentationChartBarIcon,
299+
icon: RiSlideshowLine,
300300
isPreview: true,
301301
},
302302
]

0 commit comments

Comments
 (0)