aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/components/icons/x-circle.svelte
blob: 3793b5a3c3b4952461d8bed680c0470799f3005b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<svg
    class="h-5 w-5 {$$restProps.class ?? ''}"
    xmlns="http://www.w3.org/2000/svg"
    viewBox="0 0 20 20"
    fill="currentColor"
    aria-hidden="true"
>
    <path
        fill-rule="evenodd"
        d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.28 7.22a.75.75 0 00-1.06 1.06L8.94 10l-1.72 1.72a.75.75 0 101.06 1.06L10 11.06l1.72 1.72a.75.75 0 101.06-1.06L11.06 10l1.72-1.72a.75.75 0 00-1.06-1.06L10 8.94 8.28 7.22z"
        clip-rule="evenodd"
    />
</svg>