aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/src/lib/components/icons/x-circle.svelte
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-09-24 09:36:27 +0200
committerivarlovlie <git@ivarlovlie.no>2022-09-24 09:36:27 +0200
commitb68d3fca75c68165c8e6e682127aa7b295f9ef63 (patch)
tree79c11bbd72ac84b2845a466fc704e09a84da94ca /apps/kit/src/lib/components/icons/x-circle.svelte
parent9a09b5d7448b32af7bc9f7972d1ef61c631ef436 (diff)
downloadgreatoffice-b68d3fca75c68165c8e6e682127aa7b295f9ef63.tar.xz
greatoffice-b68d3fca75c68165c8e6e682127aa7b295f9ef63.zip
feat: Migrate alert to tailwind markup
Diffstat (limited to 'apps/kit/src/lib/components/icons/x-circle.svelte')
-rw-r--r--apps/kit/src/lib/components/icons/x-circle.svelte13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/kit/src/lib/components/icons/x-circle.svelte b/apps/kit/src/lib/components/icons/x-circle.svelte
new file mode 100644
index 0000000..3793b5a
--- /dev/null
+++ b/apps/kit/src/lib/components/icons/x-circle.svelte
@@ -0,0 +1,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>