fix(web): render Skill icon at 14px

This commit is contained in:
Yichen Jiang
2026-08-07 16:15:17 +08:00
parent 59533a3271
commit 8e57dd1dac
8 files changed
+10 -10

No files matched your search

@@ -82,7 +82,7 @@ function leadingFor(state: SkillRowState): ReactNode {
switch (state) {
case 'error': return <StateDot state="error" />
case 'stopped': return <StateDot state="warning" />
default: return <IconSkillOutline16 />
default: return <IconSkillOutline16 size={14} />
}
}