The @aracna/icons-material-symbols-* packages provide all the icons from the Material Symbols project as raw SVG strings.
The name syntax of the exported raw SVG strings is ICON_MS_<NAME>_W<WEIGHT>
where <NAME>
is the name of the icon in upper snake case and <WEIGHT>
is the weight of the icon in pixels.
The available weights are [100, 200, 300, 400, 500, 600, 700, 800, 900]
.
import { ICON_MS_BRUSH_W500 } from '@aracna/icons-material-symbols-rounded-os20/assets/brush';
// will log the SVG string of the "feather" icon
console.log(ICON_MS_BRUSH_W500);