diff options
Diffstat (limited to 'assets/src/components/icons/CloseIcon.svelte')
| -rw-r--r-- | assets/src/components/icons/CloseIcon.svelte | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/assets/src/components/icons/CloseIcon.svelte b/assets/src/components/icons/CloseIcon.svelte new file mode 100644 index 0000000..a6e6569 --- /dev/null +++ b/assets/src/components/icons/CloseIcon.svelte @@ -0,0 +1,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> |
