iconoir/packages/iconoir-vue/src/WifiTag.vue
2023-05-03 08:19:37 -04:00

12 lines
995 B
Vue

<script lang="ts">
import { defineComponent, inject } from "vue-demi";
import type { SVGAttributes } from "vue-demi";
import providerKey from "./providerKey";
export default defineComponent<SVGAttributes>(() => {
const context = inject(providerKey);
return { context };
});
</script>
<template>
<svg width="24" height="24" stroke-width="1.5" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="context"><path d="M2 15V9C2 5.68629 4.68629 3 8 3H16C19.3137 3 22 5.68629 22 9V15C22 18.3137 19.3137 21 16 21H8C4.68629 21 2 18.3137 2 15Z" stroke="currentColor" stroke-width="1.5"></path><path d="M12 14.76L12.01 14.7489" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M7 11.2499C9.5 8.25001 14.5 8.25 17 11.25" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M9 13.25C10.5 11.25 13.5 11.25 15 13.25" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
</template>