patchwork-pattern
v1.0.0
Published
Generate a configurable patchwork pattern as a data URI, i.e. data:image/png;base64,iVBORw...
Downloads
6
Readme
Patchwork Pattern
Install
npm install patchwork-pattern --save
Usage
import PatchworkPattern from 'patchwork-pattern';
class myComponent extends Component {
render() {
const options = { size: 200, steps: 10 };
return (
<img src={PatchworkPattern(options)} alt="" />
);
}
}
Available options
| Option | Type | Default | | ------ | ---- | ------- | | size | integer | 500 | | steps | integer | 10 | | palettes | [[String]] | see source code |