fix: Statistik in toolRegistry mit ChartIcon korrekt registriert

This commit is contained in:
2026-06-17 13:34:45 +02:00
parent bac3c9e641
commit b6840078e2
2 changed files with 15 additions and 1 deletions

View File

@@ -170,3 +170,9 @@ export const FilmIcon = ({size=20,color='currentColor',sw}) => base(<>
<line x1="17" y1="17" x2="22" y2="17" stroke={color} strokeWidth={sw||1.5} strokeLinecap="round"/>
<line x1="17" y1="7" x2="22" y2="7" stroke={color} strokeWidth={sw||1.5} strokeLinecap="round"/>
</>, size, color, sw);
export const ChartIcon = ({size=20,color='currentColor',sw}) => base(<>
<rect x="3" y="12" width="4" height="8" rx="1" fill={color}/>
<rect x="9" y="7" width="4" height="13" rx="1" fill={color}/>
<rect x="15" y="3" width="4" height="17" rx="1" fill={color}/>
</>, size, color, sw);