Compare commits

...

5 Commits

Author SHA1 Message Date
Karsa
f4d887339e Adds ferris-wheel and roller-coaster (#1214)
* Adds ferris-wheel and roller-coaster

* Shorten roller-coaster

* Update roller-coaster.svg

---------

Co-authored-by: Karsa <karsa@karsa.org>
2023-05-24 12:14:11 +02:00
Jakob Guddas
bde11234ea Fix diamond (#1294)
* Fix `diamond`

* Update icons/diamond.svg

Co-authored-by: Karsa <contact@karsa.org>

---------

Co-authored-by: Karsa <contact@karsa.org>
2023-05-19 09:52:38 +02:00
Neutron
3449097f77 Add sparkle icon (#1220)
Co-authored-by: Karsa <contact@karsa.org>
2023-05-17 21:32:39 +02:00
Daniel Bayley
aec41eae39 Fix/optimise life-buoy icon (#1279)
* Fix/optimise `life-buoy` icon

* Update icons/life-buoy.json

Co-authored-by: Karsa <contact@karsa.org>

* Update icons/life-buoy.json

Co-authored-by: Karsa <contact@karsa.org>

* Update icons/life-buoy.svg

Co-authored-by: Karsa <contact@karsa.org>

---------

Co-authored-by: Karsa <contact@karsa.org>
2023-05-17 17:45:18 +02:00
Daniel Bayley
3da3cbc63f Improve qr-code icon metadata (#1281) 2023-05-17 10:48:01 +02:00
10 changed files with 115 additions and 15 deletions

View File

@@ -9,12 +9,5 @@
stroke-linecap="round"
stroke-linejoin="round"
>
<rect
width="15.56"
height="15.56"
x="12"
y="1"
rx="2.41"
transform="rotate(45 12 1)"
/>
<path d="M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z" />
</svg>

Before

Width:  |  Height:  |  Size: 325 B

After

Width:  |  Height:  |  Size: 357 B

16
icons/ferris-wheel.json Normal file
View File

@@ -0,0 +1,16 @@
{
"$schema": "../icon.schema.json",
"tags": [
"big wheel",
"daisy wheel",
"observation",
"attraction",
"entertainment",
"amusement park",
"theme park",
"funfair"
],
"categories": [
"maps"
]
}

21
icons/ferris-wheel.svg Normal file
View File

@@ -0,0 +1,21 @@
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="2" />
<path d="M12 2v4" />
<path d="m6.8 15-3.5 2" />
<path d="m20.7 7-3.5 2" />
<path d="M6.8 9 3.3 7" />
<path d="m20.7 17-3.5-2" />
<path d="m9 22 3-8 3 8" />
<path d="M8 22h8" />
<path d="M18 18.7a9 9 0 1 0-12 0" />
</svg>

After

Width:  |  Height:  |  Size: 473 B

View File

@@ -1,9 +1,17 @@
{
"$schema": "../icon.schema.json",
"tags": [
"preserver",
"life belt",
"lifesaver",
"help",
"rescue",
"ship"
"ship",
"ring",
"raft",
"inflatable",
"wheel",
"donut"
],
"categories": [
"accessibility",

View File

@@ -10,10 +10,9 @@
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="10" />
<path d="m4.93 4.93 4.24 4.24"/>
<path d="m14.83 9.17 4.24-4.24"/>
<path d="m14.83 14.83 4.24 4.24"/>
<path d="m9.17 14.83-4.24 4.24"/>
<circle cx="12" cy="12" r="4" />
<line x1="4.93" x2="9.17" y1="4.93" y2="9.17" />
<line x1="14.83" x2="19.07" y1="14.83" y2="19.07" />
<line x1="14.83" x2="19.07" y1="9.17" y2="4.93" />
<line x1="14.83" x2="18.36" y1="9.17" y2="5.64" />
<line x1="4.93" x2="9.17" y1="19.07" y2="14.83" />
</svg>

Before

Width:  |  Height:  |  Size: 544 B

After

Width:  |  Height:  |  Size: 423 B

View File

@@ -1,7 +1,8 @@
{
"$schema": "../icon.schema.json",
"tags": [
"barcode"
"barcode",
"scan"
],
"categories": [
"development",

13
icons/roller-coaster.json Normal file
View File

@@ -0,0 +1,13 @@
{
"$schema": "../icon.schema.json",
"tags": [
"attraction",
"entertainment",
"amusement park",
"theme park",
"funfair"
],
"categories": [
"maps"
]
}

19
icons/roller-coaster.svg Normal file
View File

@@ -0,0 +1,19 @@
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M6 19V5" />
<path d="M10 19V6.8" />
<path d="M14 19v-7.8" />
<path d="M18 5v4" />
<path d="M18 19v-6" />
<path d="M22 19V9" />
<path d="M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65" />
</svg>

After

Width:  |  Height:  |  Size: 433 B

17
icons/sparkle.json Normal file
View File

@@ -0,0 +1,17 @@
{
"$schema": "../icon.schema.json",
"tags": [
"star",
"effect",
"filter",
"night",
"magic",
"shiny",
"glitter",
"twinkle",
"celebration"
],
"categories": [
"shapes"
]
}

13
icons/sparkle.svg Normal file
View File

@@ -0,0 +1,13 @@
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m12 3-1.9 5.8a2 2 0 0 1-1.287 1.288L3 12l5.8 1.9a2 2 0 0 1 1.288 1.287L12 21l1.9-5.8a2 2 0 0 1 1.287-1.288L21 12l-5.8-1.9a2 2 0 0 1-1.288-1.287Z" />
</svg>

After

Width:  |  Height:  |  Size: 367 B