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:
Frank Noirot
2025-05-13 13:45:07 -04:00
committed by GitHub
parent 99cb6a6179
commit 8ff84e269c

View File

@ -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}