about summary refs log tree commit diff
path: root/assets/src/components/icons/EyeOpenedIcon.svelte
blob: bb799fd4dcd111ca930f7666de59b932fd29dae9 (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="M1.181 12C2.121 6.88 6.608 3 12 3c5.392 0 9.878 3.88 10.819 9-.94 5.12-5.427 9-10.819 9-5.392 0-9.878-3.88-10.819-9zM12 17a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm0-2a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"
        fill={color}
    />
</svg>