Skip to content
Snippets Groups Projects
.svgo.icons.cjs 305 B
Newer Older
  • Learn to ignore specific revisions
  • module.exports = {
      plugins: [
        "removeXMLNS",
        "removeDimensions",
        "sortAttrs",
        {
          name: "addAttributesToSVGElement",
          params: {
            attributes: [
              { fill: "currentColor" },
              { width: "1em" },
              { height: "1em" },
            ],
          },
        },
      ],
    };