選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20 行
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. };