aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/components/icons/check-circle.svelte
blob: e30778ea1c7ed57320748aaa43c45a48890eb2fe (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 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z"
        clip-rule="evenodd"
    />
</svg>