Skip to content

Commit

Permalink
fix: added weather category icon
Browse files Browse the repository at this point in the history
  • Loading branch information
ageddesi committed Mar 8, 2023
1 parent e2531b1 commit 7ae658d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion marketing-site/src/components/category-svg.astro
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,15 @@ const {name} = Astro.props

{name === "Vehicles" &&
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32" stroke-width="1.5" stroke="currentColor" class="w-6 h-6 text-white">
<path stroke-linecap="round" stroke-linejoin="round" fill="currentColor" d="M28 11a1.99 1.99 0 0 0-.825.182L24.834 9.51A3.45 3.45 0 0 0 25 8.5a3.45 3.45 0 0 0-.166-1.01l2.341-1.672A1.998 1.998 0 1 0 26 4c0 .064.013.124.019.186l-2.292 1.637A3.465 3.465 0 0 0 21.5 5a3.5 3.5 0 0 0 0 7a3.465 3.465 0 0 0 2.227-.823l2.292 1.637c-.006.062-.019.122-.019.186a2 2 0 1 0 2-2zm-6.5-1A1.5 1.5 0 1 1 23 8.5a1.502 1.502 0 0 1-1.5 1.5zm7.838 9.934l-7.732-2.779l-3.232-4.058A2.99 2.99 0 0 0 16.054 12H8.058a2.998 2.998 0 0 0-2.48 1.312l-2.712 3.983A4.988 4.988 0 0 0 2 20.107V26a1 1 0 0 0 1 1h2.142a3.98 3.98 0 0 0 7.716 0h6.284a3.98 3.98 0 0 0 7.716 0H29a1 1 0 0 0 1-1v-5.125a1 1 0 0 0-.662-.941zM9 28a2 2 0 1 1 2-2a2.003 2.003 0 0 1-2 2zm14 0a2 2 0 1 1 2-2a2.002 2.002 0 0 1-2 2zm5-3h-1.142a3.98 3.98 0 0 0-7.716 0h-6.284a3.98 3.98 0 0 0-7.716 0H4v-4.893a2.998 2.998 0 0 1 .52-1.688l2.711-3.981A1 1 0 0 1 8.058 14h7.996a.993.993 0 0 1 .764.354l3.4 4.269a1 1 0 0 0 .444.318L28 21.578z" />
<path stroke-linecap="round" stroke-linejoin="round" fill="currentColor" d="M28 11a1.99 1.99 0 0 0-.825.182L24.834 9.51A3.45 3.45 0 0 0 25 8.5a3.45 3.45 0 0 0-.166-1.01l2.341-1.672A1.998 1.998 0 1 0 26 4c0 .064.013.124.019.186l-2.292 1.637A3.465 3.465 0 0 0 21.5 5a3.5 3.5 0 0 0 0 7a3.465 3.465 0 0 0 2.227-.823l2.292 1.637c-.006.062-.019.122-.019.186a2 2 0 1 0 2-2zm-6.5-1A1.5 1.5 0 1 1 23 8.5a1.502 1.502 0 0 1-1.5 1.5zm7.838 9.934l-7.732-2.779l-3.232-4.058A2.99 2.99 0 0 0 16.054 12H8.058a2.998 2.998 0 0 0-2.48 1.312l-2.712 3.983A4.988 4.988 0 0 0 2 20.107V26a1 1 0 0 0 1 1h2.142a3.98 3.98 0 0 0 7.716 0h6.284a3.98 3.98 0 0 0 7.716 0H29a1 1 0 0 0 1-1v-5.125a1 1 0 0 0-.662-.941zM9 28a2 2 0 1 1 2-2a2.003 2.003 0 0 1-2 2zm14 0a2 2 0 1 1 2-2a2.002 2.002 0 0 1-2 2zm5-3h-1.142a3.98 3.98 0 0 0-7.716 0h-6.284a3.98 3.98 0 0 0-7.716 0H4v-4.893a2.998 2.998 0 0 1 .52-1.688l2.711-3.981A1 1 0 0 1 8.058 14h7.996a.993.993 0 0 1 .764.354l3.4 4.269a1 1 0 0 0 .444.318L28 21.578z" />
</svg>
}

{name === "Weathers" &&
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 15a4.5 4.5 0 004.5 4.5H18a3.75 3.75 0 001.332-7.257 3 3 0 00-3.758-3.848 5.25 5.25 0 00-10.233 2.33A4.502 4.502 0 002.25 15z" />
</svg>
}


</div>

0 comments on commit 7ae658d

Please sign in to comment.