This commit is contained in:
ntr
2019-07-20 18:04:08 +10:00
parent 3f1367172d
commit 145f8e6a35
12 changed files with 151 additions and 78 deletions
@@ -0,0 +1,15 @@
const preact = require('preact');
module.exports = function vboxColour(colour) {
return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" class={colour.toLowerCase()} >
<circle
cx={50}
cy={50}
r={40}
// stroke-width="2"
// stroke={colour}
/>
</svg>
);
};