Fix workflow menu icons (#14767)

As title
This commit is contained in:
Thomas Trompette
2025-09-29 14:00:05 +02:00
committed by GitHub
parent 4f24fc403b
commit 358ab54690
2 changed files with 3 additions and 2 deletions
@@ -31,6 +31,7 @@ export const WorkflowActionMenuItems = ({
theme,
actionType: action.type,
})}
size={16}
/>
)}
text={action.label}
@@ -80,7 +80,7 @@ export const CommandMenuWorkflowSelectTriggerTypeContent = ({
<MenuItem
withIconContainer={true}
key={action.defaultLabel}
LeftIcon={() => <Icon color={theme.color.blue} />}
LeftIcon={() => <Icon color={theme.color.blue} size={16} />}
text={action.defaultLabel}
onClick={handleTriggerTypeClick(action)}
/>
@@ -96,7 +96,7 @@ export const CommandMenuWorkflowSelectTriggerTypeContent = ({
<MenuItem
withIconContainer={true}
key={action.defaultLabel}
LeftIcon={() => <Icon color={theme.color.purple} />}
LeftIcon={() => <Icon color={theme.color.purple} size={16} />}
text={action.defaultLabel}
onClick={handleTriggerTypeClick(action)}
/>