This can be used to convert an svg string to a jsx string.
npm install svg-to-jsx-stringThis library provides a function which takes an svg string and then converts into a jsx string.
It can be used to on online svg to jsx editor or in a build process to convert svg files into jsx files.
```
npm install svg-to-jsx-string
`javascript
import { svgToJsxString } from "svg-to-jsx-string";
const jsxString = svgToJsxString(svgString);
``