Update bug icon to not use FontAwesome (#6904)
lol we had a custom bug icon in the codebase, no clue why I didn't update the pane config.
This commit is contained in:
@ -1,5 +1,4 @@
|
||||
import type { IconDefinition } from '@fortawesome/free-solid-svg-icons'
|
||||
import { faBugSlash } from '@fortawesome/free-solid-svg-icons'
|
||||
import type { MouseEventHandler, ReactNode } from 'react'
|
||||
import type { ContextFrom } from 'xstate'
|
||||
|
||||
@ -230,14 +229,14 @@ export const sidebarPanes: SidebarPane[] = [
|
||||
},
|
||||
{
|
||||
id: 'debug',
|
||||
icon: faBugSlash,
|
||||
icon: 'bug',
|
||||
sidebarName: 'Debug',
|
||||
Content: (props: { id: SidebarType; onClose: () => void }) => {
|
||||
return (
|
||||
<>
|
||||
<ModelingPaneHeader
|
||||
id={props.id}
|
||||
icon={faBugSlash}
|
||||
icon="bug"
|
||||
title="Debug"
|
||||
Menu={null}
|
||||
onClose={props.onClose}
|
||||
|
Reference in New Issue
Block a user