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

12 lines
1.1 KiB
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="M18 19V22" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18 16C18 15 17 14 15 14C14.6978 14 14.355 14 14.0002 14C12.3434 14 11 12.6569 11 11V8.5C11 7.11929 12.1193 6 13.5 6V6H14" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M22 16C22 11.5 20 10.5 18 10C20 9.5 22 9 22 6C22 3 19.5 2 18 2" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M22 19V22" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><rect x="2" y="19" width="12" height="3" rx="0.6" stroke="currentColor" stroke-width="1.5"></rect></svg>
</template>