svg-textures
v1.0.2
Published
SVG utilities based on Virtual Elements
Downloads
3
Maintainers
Readme
SVG Textures
Create simple and interesting backgrounds with a single line of code.
Check out the live demo with code examples!
Use the same textures anywhere
The SVG utilities are based on Virtual Elements.
This means that you can create textures in the Browser in real time or you can generate .svg files in Node.
If you have a React app simply do .toReactElement()
, eg:
const MyReactComponent = (props) =>
{
return (
<div>
<MyOtherComponent/>
{svgRectPatternLine().toReactElement()}
</div>
);
}