
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@bento/svg-parser
Advanced tools
A utility for transforming SVG strings into React components with support for custom node and property transformations.
npm install @bento/svg-parser
Import the parser function and pass your SVG string as the first argument.
Standard SVG attributes are automatically converted to React-friendly props
(hyphenated attributes become camelCase).
import { parser } from '@bento/svg-parser';
/**
* Basic SVG parsing example
*
* This example demonstrates the simplest usage of the svg-parser.
* It takes a basic SVG string and converts it to a React element.
*
* Usage:
* ```tsx
* import { BasicExample } from './examples/basic';
*
* function App() {
* return <BasicExample />;
* }
* ```
*/
const basicSvg = `
<svg width="100" height="100">
<rect x="10" y="10" width="80" height="80" fill="blue" />
</svg>
`;
export function BasicExample() {
const parsedSvg = parser(basicSvg);
return parsedSvg;
}
Use property transformations when you need to convert SVG attributes that don't
follow React conventions. Each transformation function receives the DOM element
and returns [newPropertyName, newPropertyValue]. Essential for attributes
like class (becomes className) or stroke-width (becomes strokeWidth).
import { parser } from '@bento/svg-parser';
/**
* Custom Props Transformation Example
*
* This example demonstrates how to transform SVG attributes using custom prop transformations.
* It shows how to:
* - Convert 'class' to 'className'
* - Convert 'stroke-width' to 'strokeWidth'
*/
const svgWithCustomProps = `
<svg width="100" height="100">
<circle cx="50" cy="50" r="40" stroke-width="2" class="custom-circle" />
</svg>
`;
export function CustomPropsExample() {
const parsedSvg = parser(svgWithCustomProps, {
props: {
// Transform 'class' attribute to 'className'
class: (node) => ['className', node.getAttribute('class')!],
// Transform 'stroke-width' to 'strokeWidth'
'stroke-width': (node) => ['strokeWidth', node.getAttribute('stroke-width')!]
}
});
return parsedSvg;
}
Transform custom SVG elements into standard elements or React components when
you have non-standard elements in your SVG. Each transformation function
receives the DOM element and returns [componentName, componentProps],
allowing you to extract attributes and create new component properties.
import { parser } from '@bento/svg-parser';
/**
* Custom Nodes Transformation Example
*
* This example demonstrates how to transform custom SVG elements into React components.
* It shows how to:
* - Transform a custom-shape into a rectangle with specific styling
* - Transform a special-element into a circle with dynamic properties
*/
const svgWithCustomNodes = `
<svg width="200" height="200">
<custom-shape x="50" y="50" size="100" />
<special-element type="circle" radius="40" />
</svg>
`;
export function CustomNodesExample() {
const parsedSvg = parser(svgWithCustomNodes, {
nodes: {
// Transform custom-shape to a rectangle with specific styling
'custom-shape': (node) => [
'rect',
{
x: node.getAttribute('x'),
y: node.getAttribute('y'),
width: node.getAttribute('size'),
height: node.getAttribute('size'),
fill: 'purple',
rx: '8'
}
],
// Transform special-element to a circle with dynamic properties
'special-element': (node) => [
'circle',
{
cx: '100',
cy: '100',
r: node.getAttribute('radius'),
fill: 'orange'
}
]
}
});
return parsedSvg;
}
Combine both transformations when you need to handle custom elements AND custom attributes. The parser applies node transformations first, then processes properties on all elements (including newly transformed ones).
import { parser } from '@bento/svg-parser';
/**
* Complex SVG Parser Example
*
* This example demonstrates a more complex usage of the SVG parser with
* both custom node transformations and custom props transformations.
* It shows how to:
* - Transform custom elements into standard SVG elements
* - Transform custom attributes into React props
* - Apply both transformations simultaneously
*/
const svgWithComplexFeatures = `
<svg width="200" height="200">
<custom-shape x="50" y="50" size="100" stroke-width="2" class="purple-box" />
<special-element type="circle" radius="40" stroke-width="3" class="orange-circle" />
<rect x="10" y="10" width="50" height="50" stroke-width="1" class="blue-box" />
</svg>
`;
export function ComplexExample() {
const parsedSvg = parser(svgWithComplexFeatures, {
// Custom node transformations
nodes: {
'custom-shape': (node) => [
'rect',
{
x: node.getAttribute('x'),
y: node.getAttribute('y'),
width: node.getAttribute('size'),
height: node.getAttribute('size'),
fill: 'purple',
rx: '8',
strokeWidth: node.getAttribute('stroke-width'),
className: node.getAttribute('class')
}
],
'special-element': (node) => [
'circle',
{
cx: '100',
cy: '100',
r: node.getAttribute('radius'),
fill: 'orange',
strokeWidth: node.getAttribute('stroke-width'),
className: node.getAttribute('class')
}
]
},
// Custom props transformations
props: {
'stroke-width': (node) => ['strokeWidth', node.getAttribute('stroke-width')!],
class: (node) => ['className', node.getAttribute('class')!]
}
});
return parsedSvg;
}
FAQs
A utility for parsing SVG strings into React elements
We found that @bento/svg-parser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.

Product
Bringing supply chain security to the next generation of JavaScript package managers