Back to Redwood

Replace Component Svgs

packages/codemods/src/codemods/v6.x.x/replaceComponentSvgs/README.md

8.9.0420 B
Original Source

Replace Component Svgs

This codemod will find all the cases where SVGs are imported as used as components, and then:

  1. Generates a react component with SVGR (see fixtures for example)
  2. Replaces the import to the svg file with an import to the new React component

e.g.

diff
- import Bazinga from '../bazinga.svg'
+ import Bazinga from '../BazingaSVG.jsx'

const myComponent = () => {
  // ...
  <Bazinga/>