Skip to content

Commit

Permalink
chore: configmap / secret icon (podman-desktop#7749)
Browse files Browse the repository at this point in the history
  • Loading branch information
deboer-tim authored Jun 19, 2024
1 parent 5e9003e commit fc17255
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions packages/renderer/src/lib/images/ConfigMapSecretIcon.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<script lang="ts">
export let size = '40';
</script>

<svg
width="{size}"
height="{size}"
class="{$$props.class}"
style="{$$props.style}"
viewBox="0 0 16.015625 16"
version="1.1"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="m 12.058594,6.7070312 c -0.984201,0 -1.716797,0.7504606 -1.716797,2.0722657 0,1.3218051 0.732596,2.0703131 1.716797,2.0703131 0.989923,0 1.716796,-0.748508 1.716796,-2.0703131 0,-1.3218051 -0.726873,-2.0722657 -1.716796,-2.0722657 z m 1.96289,0.068359 v 0.7441406 h 0.800781 V 10.78125 h 0.925782 V 6.7753906 Z m -1.96289,0.7148438 c 0.463489,0 0.783203,0.3792485 0.783203,1.2890625 0,0.9098133 -0.319714,1.2871095 -0.783203,1.2871095 -0.457768,0 -0.779297,-0.3772962 -0.779297,-1.2871095 0,-0.909814 0.321529,-1.2890625 0.779297,-1.2890625 z m 2.242187,4.367188 c -0.984203,0 -1.716797,0.748505 -1.716797,2.070312 0,1.321808 0.732594,2.072266 1.716797,2.072266 0.989925,0 1.716797,-0.750458 1.716797,-2.072266 0,-1.321807 -0.726872,-2.070312 -1.716797,-2.070312 z m -4.142578,0.06836 v 0.744141 h 0.800781 v 3.261719 h 0.927735 v -4.00586 z m 4.142578,0.714844 c 0.463491,0 0.783203,0.377294 0.783203,1.287109 0,0.909816 -0.319712,1.289063 -0.783203,1.289063 -0.457769,0 -0.777344,-0.379247 -0.777344,-1.289063 0,-0.909815 0.319575,-1.287109 0.777344,-1.287109 z"
style="line-height:0.9;fill:currentColor;stroke:currentColor;stroke-width:0;stroke-linecap:square"></path>
<path
d="m 77.005859,1 v 1 h 2 V 1 Z m 3,0 v 1 h 10 V 1 Z m 1,3 v 1 h 2 V 4 Z m 3,0 v 1 h 6 V 4 Z m -2.998047,3 v 1 h 1.998047 V 7 Z m 3.009766,0 v 1 h 1.623047 C 85.80251,7.3075169 86.005859,7.2837668 86.005859,7 Z m -7.009766,3 v 1 h 1.998047 v -1 z m 2.998047,0 v 1 h 5.891453 c 0.05995,0 0.109894,-0.04885 0.102527,-0.108307 C 85.969306,10.645277 85.829506,10.696214 85.73823,10.070642 85.732544,10.031673 85.696387,10 85.656754,10 Z"
style="fill:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
transform="translate(-76.005005)"></path>
</svg>
2 changes: 1 addition & 1 deletion packages/ui/src/lib/screen/EmptyScreen.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ let copyTextDivElement: HTMLDivElement;
{#if fontAwesomeIcon}
<Fa icon="{icon}" size="4x" />
{:else}
<svelte:component this="{icon}" size="55" solid="{false}" />
<svelte:component this="{icon}" size="55" />
{/if}
{/if}
</div>
Expand Down

0 comments on commit fc17255

Please sign in to comment.