You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
243 B

  1. module.exports = {
  2. plugins: [
  3. {
  4. name: 'removeAttrs',
  5. params: {
  6. attrs: 'fill',
  7. },
  8. },
  9. {
  10. name: 'addAttributesToSVGElement',
  11. params: {
  12. attributes: [
  13. {
  14. fill: 'currentColor',
  15. },
  16. ],
  17. },
  18. },
  19. ],
  20. };