Replies: 1 comment
-
We use the Fluent UI System Icons (https://github.com/microsoft/fluentui-system-icons) collection as our base. In this collection, every icon is provided in different sizes (to have optimal image quality). Also, not every icon is available in every size.. We import and use this collection unaltered (and have no plans to change that). We trim unused icons on publication so only the icon with size used remain in the dll. If you create custom icons, it is possible to specify a width parameter. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Why not make the path from icons resizable instead of manually setting each size?
Old
<FluentIcon Value="@(new Icons.Regular.Size24.Bookmark())" />
New
<FluentIcon Value="@(Icons.Regular.Bookmark(IconSize.Size24))" />
This way you could use 1 path to render any size you would like
So the path resizable could be something like
Beta Was this translation helpful? Give feedback.
All reactions