Open
Description
Some icons (e.g. tabler:
) include a hardcoded stroke width:
<svg width="1em" height="1em" viewBox="0 0 24 24" ...>
<path stroke-width="2" ... />
</svg>
Sometimes, e.g. when using big icons, you want to change that stroke to a smaller value for aesthetic reasons.
Right now I define this CSS class to change the stroke as needed:
svg.icon-stroke-1-5,
svg.icon-stroke-1-5 g {
stroke-width: 1.5;
}
I wonder if it would possible to make the stroke configurable for UX icons. Maybe it's not because not all icon sets define a stroke width to begin with. Thanks!