@ianwang/babel-plugin-react-inline-svg

0.7.0 • Public • Published

babel-plugin-react-inline-svg

Hint: This is a fork of kesne's babel-plugin-inline-react-svg. It exists to get SVGO up to date (version 1.0.3) and enable the newest plugins. When the original repo updates svgo, this one will probably be put down again as it only serves us for that matter.

Transforms imports to SVG files into React Components, and optimizes the SVGs with SVGO.

For example, the following code...

import React from 'react';
import CloseSVG from './close.svg';

const MyComponent = () => <CloseSvg />;

will be transformed into...

import React from 'react';
const CloseSVG = () => <svg>{/* ... */}</svg>;

const MyComponent = () => <CloseSvg />;

Installation

npm install --save-dev babel-plugin-react-inline-svg

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": [
    "inline-react-svg"
  ]
}

Options

  • ignorePattern - A pattern that imports will be tested against to selectively ignore imports.
  • caseSensitive - A boolean value that if true will require file paths to match with case-sensitivity. Useful to ensure consistent behavior if working on both a case-sensitive operating system like Linux and a case-insensitive one like OS X or Windows.
  • svgo - svgo options (false to disable). Example:
{
  "plugins": [
    [
      "inline-react-svg",
      {
        "svgo": {
          "plugins": [
            {
              "removeAttrs": { "attrs": "(data-name)" }
            },
            {
              "cleanupIDs": true
            }
          ]

        }
      }
    ]
  ]
}

Via CLI

$ babel --plugins inline-react-svg script.js

Via Node API

require('babel-core').transform('code', {
  plugins: ['inline-react-svg']
}) // => { code, map, ast };

Inspired by and code foundation provided by react-svg-loader.

Package Sidebar

Install

npm i @ianwang/babel-plugin-react-inline-svg

Weekly Downloads

0

Version

0.7.0

License

MIT

Unpacked Size

19.4 kB

Total Files

17

Last publish

Collaborators

  • ianwang