about summary refs log tree commit diff
path: root/assets/src/components/icons/CloseIcon.svelte
blob: a6e6569d4aa8a5c955622807023afa4be3bcc728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<script lang="ts">
    export let color: "white" | "black";
</script>

<svg
    xmlns="http://www.w3.org/2000/svg"
    viewBox="0 0 24 24"
    width="16"
    height="16"
>
    <path fill="none" d="M0 0h24v24H0z" />
    <path
        d="M12 10.586l4.95-4.95 1.414 1.414-4.95 4.95 4.95 4.95-1.414 1.414-4.95-4.95-4.95 4.95-1.414-1.414 4.95-4.95-4.95-4.95L7.05 5.636z"
        fill={color}
    />
</svg>