
Squire.js is a JavaScript library to generate consistent, customizable, vector-shaped badges using SVG and JavaScript.
Compatible with both browser and node.js.
How to use it:
Load the compiled squire.js library in the document.
<script src="/dist/squire.js"></script>
Generate a basic badge with the generateBadge API.
squire.generateBadge('Left Text', 'Right Text', 'Hex Color Here');Generate a highly customizable badge with the generateBadgeSVG API.
squire.generateBadgeSVG({
borderRadius: 4,
fontSize: 9,
height: 20,
subject: 'Left Text'
subjectColor: 'BG color'
subjectLengt: 'Length'
subjectTextColor: '#FFF',
value: 'Right Text'
valueColor: 'BG color'
valueLength: 'Length'
valueTextColor: '#FFF',
width: 100
})






