SVG to JSX Converter
Free online svg to jsx converter. Convert SVG markup to JSX. Perfect for designers and developers.
SVG Markup
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" /> </svg>
JSX Output
Copy
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="40" stroke="green" strokeWidth="4" fill="yellow" /> </svg>