Skip to content

Commit fd781c4

Browse files
committed
1 parent f95735e commit fd781c4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/project-editor/project/ui/PropertiesPanel.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import {
1414
import { PropertyGrid } from "project-editor/ui-components/PropertyGrid";
1515
import { ProjectEditor } from "project-editor/project-editor-interface";
1616
import { Settings } from "../project";
17+
import { Icon } from "eez-studio-ui/icon";
1718

1819
export const PropertiesPanel = observer(
1920
class PropertiesPanel extends React.Component {
@@ -74,7 +75,7 @@ export const PropertiesPanel = observer(
7475
return (
7576
<div className="EezStudio_PropertiesPanel">
7677
<div className="EezStudio_PropertiesPanel_Header">
77-
{typeof icon === "string" ? <img src={icon} /> : icon}
78+
{typeof icon === "string" ? <Icon icon={icon} /> : icon}
7879
{title}
7980
</div>
8081
<div className="EezStudio_PropertiesPanel_Body">

packages/project-editor/ui-components/icons.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3544,7 +3544,7 @@ export const CALL_ACTION_ICON: any = (
35443544
);
35453545

35463546
export const CALL_NATIVE_ACTION_ICON: any = (
3547-
<svg viewBox="0 0 24 24">
3547+
<svg viewBox="0 0 24 24" fill="currentColor">
35483548
<path fill="none" d="M0 0h24v24H0z" />
35493549
<path d="M4 18v-3.7a1.5 1.5 0 0 0-1.5-1.5H2v-1.6h.5A1.5 1.5 0 0 0 4 9.7V6a3 3 0 0 1 3-3h1v2H7a1 1 0 0 0-1 1v4.1A2 2 0 0 1 4.626 12 2 2 0 0 1 6 13.9V18a1 1 0 0 0 1 1h1v2H7a3 3 0 0 1-3-3m16-3.7V18a3 3 0 0 1-3 3h-1v-2h1a1 1 0 0 0 1-1v-4.1a2 2 0 0 1 1.374-1.9A2 2 0 0 1 18 10.1V6a1 1 0 0 0-1-1h-1V3h1a3 3 0 0 1 3 3v3.7a1.5 1.5 0 0 0 1.5 1.5h.5v1.6h-.5a1.5 1.5 0 0 0-1.5 1.5" />
35503550
</svg>

0 commit comments

Comments
 (0)