Use antd icon

Summary:
the glyph isnt working and need to get it fixed asap

changelog: UIDebugger fix icon for litho event timeline tab

Reviewed By: ivanmisuno

Differential Revision: D49780805

fbshipit-source-id: 832746237a43552171cd8e0bd3063318159279dd
This commit is contained in:
Luke De Feo
2023-09-29 11:21:05 -07:00
committed by Facebook GitHub Bot
parent 896c001711
commit 4d7b017430

View File

@@ -26,6 +26,7 @@ import {Tooltip} from 'antd';
import {NoData} from './inspector/NoData';
import {plugin} from '../../index';
import {FrameworkEventsInspector} from './inspector/FrameworkEventsInspector';
import {DashboardOutlined} from '@ant-design/icons';
type Props = {
os: DeviceOS;
@@ -114,10 +115,8 @@ export const Inspector: React.FC<Props> = ({
tab={
<Tooltip title="Events">
<Layout.Horizontal center>
<Glyph
name="weather-thunder"
size={16}
color={theme.primaryColor}
<DashboardOutlined
style={{color: theme.primaryColor, fontSize: 16}}
/>
</Layout.Horizontal>
</Tooltip>