You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add minimal SVG rendering mode for icons
Introduce a new `minimal` option that renders icons using only the essential SVG attributes (`class` and `viewBox`).
When using this mode, the following CSS is required to ensure the icons render correctly:
```css
.i {
stroke-width: var(--i-stroke, 2);
width: var(--i-size, 24px);
height: var(--i-size, 24px);
stroke: var(--i-color, currentColor);
stroke-linecap: round;
stroke-linejoin: round;
fill: none;
}
````