2.1.28, initiation update to PXT v5.28.24 (#54)
12
resources/generateleds/generateandupdate.sh
Normal file
@ -0,0 +1,12 @@
|
||||
# Run the generate script
|
||||
node generateleds.js
|
||||
|
||||
# Copy the generated led png files into the right directory
|
||||
cp -R out/*.png ../../libs/core/jres/icons/
|
||||
|
||||
# Rebuilt the jres with those new files
|
||||
cd ../../libs/core
|
||||
pxt jres
|
||||
|
||||
# Return back to generateleds directory
|
||||
cd ../../resources/generateleds
|
287
resources/generateleds/generateleds.js
Normal file
@ -0,0 +1,287 @@
|
||||
var fs = require('fs');
|
||||
var path = require('path');
|
||||
|
||||
// You need to npm install svg2png for this to work
|
||||
var svg2png = require('svg2png');
|
||||
|
||||
var svgdir = "svg";
|
||||
var outputdir = "out";
|
||||
|
||||
const svgNS = "http://www.w3.org/2000/svg";
|
||||
|
||||
const icons = {
|
||||
heart: `
|
||||
. # . # .
|
||||
# # # # #
|
||||
# # # # #
|
||||
. # # # .
|
||||
. . # . .`,
|
||||
smallheart: `
|
||||
. . . . .
|
||||
. # . # .
|
||||
. # # # .
|
||||
. . # . .
|
||||
. . . . .`,
|
||||
happy: `
|
||||
. . . . .
|
||||
. # . # .
|
||||
. . . . .
|
||||
# . . . #
|
||||
. # # # .`,
|
||||
sad: `
|
||||
. . . . .
|
||||
. # . # .
|
||||
. . . . .
|
||||
. # # # .
|
||||
# . . . #`,
|
||||
confused: `
|
||||
. . . . .
|
||||
. # . # .
|
||||
. . . . .
|
||||
. # . # .
|
||||
# . # . #`,
|
||||
angry: `
|
||||
# . . . #
|
||||
. # . # .
|
||||
. . . . .
|
||||
# # # # #
|
||||
# . # . #`,
|
||||
asleep: `
|
||||
. . . . .
|
||||
# # . # #
|
||||
. . . . .
|
||||
. # # # .
|
||||
. . . . .`,
|
||||
surprised: `
|
||||
. # . # .
|
||||
. . . . .
|
||||
. . # . .
|
||||
. # . # .
|
||||
. . # . .`,
|
||||
silly: `
|
||||
# . . . #
|
||||
. . . . .
|
||||
# # # # #
|
||||
. . . # #
|
||||
. . . # #`,
|
||||
fabulous: `
|
||||
# # # # #
|
||||
# # . # #
|
||||
. . . . .
|
||||
. # . # .
|
||||
. # # # .`,
|
||||
meh: `
|
||||
# # . # #
|
||||
. . . . .
|
||||
. . . # .
|
||||
. . # . .
|
||||
. # . . .`,
|
||||
yes: `
|
||||
. . . . .
|
||||
. . . . #
|
||||
. . . # .
|
||||
# . # . .
|
||||
. # . . .`,
|
||||
no: `
|
||||
# . . . #
|
||||
. # . # .
|
||||
. . # . .
|
||||
. # . # .
|
||||
# . . . #`,
|
||||
triangle: `
|
||||
. . . . .
|
||||
. . # . .
|
||||
. # . # .
|
||||
# # # # #
|
||||
. . . . .`,
|
||||
lefttriangle: `
|
||||
# . . . .
|
||||
# # . . .
|
||||
# . # . .
|
||||
# . . # .
|
||||
# # # # #`,
|
||||
chessboard: `
|
||||
. # . # .
|
||||
# . # . #
|
||||
. # . # .
|
||||
# . # . #
|
||||
. # . # .`,
|
||||
diamond: `
|
||||
. . # . .
|
||||
. # . # .
|
||||
# . . . #
|
||||
. # . # .
|
||||
. . # . .`,
|
||||
smalldiamond: `
|
||||
. . . . .
|
||||
. . # . .
|
||||
. # . # .
|
||||
. . # . .
|
||||
. . . . .`,
|
||||
square: `
|
||||
# # # # #
|
||||
# . . . #
|
||||
# . . . #
|
||||
# . . . #
|
||||
# # # # #`,
|
||||
smallsquare: `
|
||||
. . . . .
|
||||
. # # # .
|
||||
. # . # .
|
||||
. # # # .
|
||||
. . . . .`,
|
||||
scissors: `
|
||||
# # . . #
|
||||
# # . # .
|
||||
. . # . .
|
||||
# # . # .
|
||||
# # . . #`,
|
||||
tshirt: `
|
||||
# # . # #
|
||||
# # # # #
|
||||
. # # # .
|
||||
. # # # .
|
||||
. # # # .`,
|
||||
rollerskate: `
|
||||
. . . # #
|
||||
. . . # #
|
||||
# # # # #
|
||||
# # # # #
|
||||
. # . # .`,
|
||||
duck: `
|
||||
. # # . .
|
||||
# # # . .
|
||||
. # # # #
|
||||
. # # # .
|
||||
. . . . .`,
|
||||
house: `
|
||||
. . # . .
|
||||
. # # # .
|
||||
# # # # #
|
||||
. # # # .
|
||||
. # . # .`,
|
||||
tortoise: `
|
||||
. . . . .
|
||||
. # # # .
|
||||
# # # # #
|
||||
. # . # .
|
||||
. . . . .`,
|
||||
butterfly: `
|
||||
# # . # #
|
||||
# # # # #
|
||||
. . # . .
|
||||
# # # # #
|
||||
# # . # #`,
|
||||
stickfigure: `
|
||||
. . # . .
|
||||
# # # # #
|
||||
. . # . .
|
||||
. # . # .
|
||||
# . . . #`,
|
||||
ghost: `
|
||||
. # # # .
|
||||
# . # . #
|
||||
# # # # #
|
||||
# # # # #
|
||||
# . # . #`,
|
||||
sword: `
|
||||
. . # . .
|
||||
. . # . .
|
||||
. . # . .
|
||||
. # # # .
|
||||
. . # . .`
|
||||
,
|
||||
giraffe: `
|
||||
# # . . .
|
||||
. # . . .
|
||||
. # . . .
|
||||
. # # # .
|
||||
. # . # .`,
|
||||
skull: `
|
||||
. # # # .
|
||||
# . # . #
|
||||
# # # # #
|
||||
. # # # .
|
||||
. # # # .`,
|
||||
umbrella: `
|
||||
. # # # .
|
||||
# # # # #
|
||||
. . # . .
|
||||
# . # . .
|
||||
# # # . .`,
|
||||
snake: `
|
||||
# # . . .
|
||||
# # . # #
|
||||
. # . # .
|
||||
. # # # .
|
||||
. . . . .`,
|
||||
rabbit: `
|
||||
# . # . .
|
||||
# . # . .
|
||||
# # # # .
|
||||
# # . # .
|
||||
# # # # .`,
|
||||
cow: `
|
||||
# . . . #
|
||||
# . . . #
|
||||
# # # # #
|
||||
. # # # .
|
||||
. . # . .`,
|
||||
quarternote: `
|
||||
. . # . .
|
||||
. . # . .
|
||||
. . # . .
|
||||
# # # . .
|
||||
# # # . .`,
|
||||
eigthnote: `
|
||||
. . # . .
|
||||
. . # # .
|
||||
. . # . #
|
||||
# # # . .
|
||||
# # # . .`,
|
||||
pitchfork: `
|
||||
# . # . #
|
||||
# . # . #
|
||||
# # # # #
|
||||
. . # . .
|
||||
. . # . .`,
|
||||
target: `
|
||||
. . # . .
|
||||
. # # # .
|
||||
# # . # #
|
||||
. # # # .
|
||||
. . # . .`
|
||||
}
|
||||
|
||||
Object.keys(icons).forEach(icon => {
|
||||
const data = icons[icon];
|
||||
const hexLiteral = data
|
||||
.replace(/[ \n`\(\)]/gi, '');
|
||||
|
||||
var svg = `<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200">`;
|
||||
const width = 200;
|
||||
const height = 200;
|
||||
//svg += '<rect width="100%" height="100%" fill="#176CBF"/>';
|
||||
for (var i = 0; i < 5; i++) {
|
||||
for (j = 0; j < 5; j++) {
|
||||
const hexItemVal = hexLiteral[(i * 5) + j] ? hexLiteral[(i * 5) + j] == '#' : false;
|
||||
const x = j * (width / 5);
|
||||
const y = i * (height / 5);
|
||||
svg += `<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(${x},${y})"
|
||||
fill="${hexItemVal ? '#fff' : '#000'}"
|
||||
fill-opacity="${hexItemVal ? '1.0' : '0.2'}"/>\n`; //#006CC2
|
||||
}
|
||||
}
|
||||
svg += `</svg>`;
|
||||
const svgPath = path.join(svgdir, icon + ".svg");
|
||||
fs.writeFile(svgPath, svg, { encoding: 'utf8', flag: 'w' }, function(err, result) {
|
||||
if (err) console.log("error writing to file");
|
||||
});
|
||||
|
||||
const sourceBuffer = Buffer.from(svg, 'utf8');
|
||||
svg2png(sourceBuffer, { width: 200, height: 200 })
|
||||
.then(buffer => fs.writeFile(path.join(outputdir, icon + "-icon.png"), buffer, { encoding: 'utf8', flag: 'w' }, function (err, result) {
|
||||
if (err) console.log("error writing to file");
|
||||
}))
|
||||
.catch(e => console.error(e));
|
||||
});
|
BIN
resources/generateleds/out/angry-icon.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
resources/generateleds/out/asleep-icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
resources/generateleds/out/butterfly-icon.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
resources/generateleds/out/chessboard-icon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
resources/generateleds/out/confused-icon.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
resources/generateleds/out/cow-icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
resources/generateleds/out/diamond-icon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
resources/generateleds/out/duck-icon.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
resources/generateleds/out/eigthnote-icon.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
resources/generateleds/out/fabulous-icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
resources/generateleds/out/ghost-icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
resources/generateleds/out/giraffe-icon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
resources/generateleds/out/happy-icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
resources/generateleds/out/heart-icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
resources/generateleds/out/house-icon.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
resources/generateleds/out/lefttriangle-icon.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
resources/generateleds/out/meh-icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
resources/generateleds/out/no-icon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
resources/generateleds/out/pitchfork-icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
resources/generateleds/out/quarternote-icon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
resources/generateleds/out/rabbit-icon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
resources/generateleds/out/rollerskate-icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
resources/generateleds/out/sad-icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
resources/generateleds/out/scissors-icon.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
resources/generateleds/out/silly-icon.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
resources/generateleds/out/skull-icon.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
resources/generateleds/out/smalldiamond-icon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
resources/generateleds/out/smallheart-icon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
resources/generateleds/out/smallsquare-icon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
resources/generateleds/out/snake-icon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
resources/generateleds/out/square-icon.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
resources/generateleds/out/stickfigure-icon.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
resources/generateleds/out/surprised-icon.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
resources/generateleds/out/sword-icon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
resources/generateleds/out/target-icon.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
resources/generateleds/out/tortoise-icon.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
resources/generateleds/out/triangle-icon.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
resources/generateleds/out/tshirt-icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
resources/generateleds/out/umbrella-icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
resources/generateleds/out/yes-icon.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
76
resources/generateleds/svg/angry.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/asleep.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/butterfly.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/chessboard.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/confused.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/cow.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/diamond.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/duck.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/eigthnote.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/fabulous.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/ghost.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/giraffe.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/happy.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/heart.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/house.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/lefttriangle.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/meh.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/no.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/pitchfork.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/quarternote.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/rabbit.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/rollerskate.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/sad.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/scissors.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/silly.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/skull.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/smalldiamond.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/smallheart.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/smallsquare.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/snake.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/square.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/stickfigure.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/surprised.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/sword.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/target.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/tortoise.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/triangle.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/tshirt.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/umbrella.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
76
resources/generateleds/svg/yes.svg
Normal file
@ -0,0 +1,76 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200"><rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,0)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,40)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,40)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,80)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,80)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,120)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,120)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(0,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(40,160)"
|
||||
fill="#fff"
|
||||
fill-opacity="1.0"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(80,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(120,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
<rect y="5" x="5" width="30" height="30" rx="5" transform="translate(160,160)"
|
||||
fill="#000"
|
||||
fill-opacity="0.2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |