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 type { IconDefinition } from '@fortawesome/free-solid-svg-icons'
|
||||||
import { faBugSlash } from '@fortawesome/free-solid-svg-icons'
|
|
||||||
import type { MouseEventHandler, ReactNode } from 'react'
|
import type { MouseEventHandler, ReactNode } from 'react'
|
||||||
import type { ContextFrom } from 'xstate'
|
import type { ContextFrom } from 'xstate'
|
||||||
|
|
||||||
@ -230,14 +229,14 @@ export const sidebarPanes: SidebarPane[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'debug',
|
id: 'debug',
|
||||||
icon: faBugSlash,
|
icon: 'bug',
|
||||||
sidebarName: 'Debug',
|
sidebarName: 'Debug',
|
||||||
Content: (props: { id: SidebarType; onClose: () => void }) => {
|
Content: (props: { id: SidebarType; onClose: () => void }) => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<ModelingPaneHeader
|
<ModelingPaneHeader
|
||||||
id={props.id}
|
id={props.id}
|
||||||
icon={faBugSlash}
|
icon="bug"
|
||||||
title="Debug"
|
title="Debug"
|
||||||
Menu={null}
|
Menu={null}
|
||||||
onClose={props.onClose}
|
onClose={props.onClose}
|
||||||
|
Reference in New Issue
Block a user