Compare commits

...

6 Commits

Author SHA1 Message Date
karsa-mistmere
6fcc9fc0ed Fixes dollar-sign (#573)
Co-authored-by: Karsa <karsa@karsa.org>
2022-04-15 12:25:51 +02:00
Vjacheslav Trushkin
bc5644253d Fixes flag-off (#581)
* Fixes flag-off

* Use line instead of path in flag-off

* formatting

Co-authored-by: Eric Fennis <eric.fennis@gmail.com>
2022-04-15 12:21:49 +02:00
karsa-mistmere
f6bd40b1b4 Fixes credit-card (#567)
* Fixes credit-card

* Use <line> instead of <path>

* Update credit-card.svg

Co-authored-by: Karsa <karsa@karsa.org>
Co-authored-by: Eric Fennis <eric.fennis@gmail.com>
2022-04-15 12:07:24 +02:00
karsa-mistmere
23987e920f Fixes map-pin (#576)
Co-authored-by: Karsa <karsa@karsa.org>
2022-04-12 21:19:58 +02:00
karsa-mistmere
79acf77aac Fix misaligned lines in crop (#557)
* fixed unaligned lines in crop icon

* Added 1px padding

Co-authored-by: Karsa <karsa@karsa.org>
2022-04-12 20:59:13 +02:00
karsa-mistmere
7baf9acffa flag-off / unflag (#555)
* Added unflag icon.

* Added 1px padding

* broke up paths

Co-authored-by: Karsa <karsa@karsa.org>
2022-04-12 20:58:27 +02:00
6 changed files with 24 additions and 6 deletions

View File

@@ -9,6 +9,6 @@
stroke-linecap="round" stroke-linecap="round"
stroke-linejoin="round" stroke-linejoin="round"
> >
<rect x="1" y="4" width="22" height="16" rx="2" ry="2" /> <rect x="2" y="5" width="20" height="14" rx="2" />
<line x1="1" y1="10" x2="23" y2="10" /> <line x1="2" y1="10" x2="22" y2="10" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 310 B

After

Width:  |  Height:  |  Size: 303 B

View File

@@ -9,6 +9,6 @@
stroke-linecap="round" stroke-linecap="round"
stroke-linejoin="round" stroke-linejoin="round"
> >
<path d="M6.13 1 6 16a2 2 0 0 0 2 2h15" /> <path d="M6 2v14a2 2 0 0 0 2 2h14"/>
<path d="M1 6.13 16 6a2 2 0 0 1 2 2v15" /> <path d="M18 22V8a2 2 0 0 0-2-2H2"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 298 B

After

Width:  |  Height:  |  Size: 286 B

View File

@@ -9,6 +9,6 @@
stroke-linecap="round" stroke-linecap="round"
stroke-linejoin="round" stroke-linejoin="round"
> >
<line x1="12" y1="1" x2="12" y2="23" /> <line x1="12" y1="2" x2="12" y2="22" />
<path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" /> <path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 315 B

After

Width:  |  Height:  |  Size: 315 B

15
icons/flag-off.svg Normal file
View File

@@ -0,0 +1,15 @@
<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="M8 2c3 0 5 2 8 2s4-1 4-1v11" />
<path d="M4 22v-7m0 0s1-1 4-1 5 2 8 2M4 15V4" />
<line x1="2" y1="2" x2="22" y2="22" />
</svg>

After

Width:  |  Height:  |  Size: 343 B

View File

@@ -9,6 +9,6 @@
stroke-linecap="round" stroke-linecap="round"
stroke-linejoin="round" stroke-linejoin="round"
> >
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z" /> <path d="M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 0 1 16 0Z" />
<circle cx="12" cy="10" r="3" /> <circle cx="12" cy="10" r="3" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 305 B

After

Width:  |  Height:  |  Size: 305 B

View File

@@ -1078,6 +1078,9 @@
"flag": [ "flag": [
"report" "report"
], ],
"flag-off": [
"unflag"
],
"flag-triangle-left": [ "flag-triangle-left": [
"report", "report",
"timeline" "timeline"