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

12 lines
799 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="M9 8C9 6.34315 10.3431 5 12 5V5C13.6569 5 15 6.34315 15 8V21.4C15 21.7314 14.7314 22 14.4 22H9.6C9.26863 22 9 21.7314 9 21.4V8Z" stroke="currentColor" stroke-linecap="round"></path><path d="M9 11H15" stroke="currentColor" stroke-linecap="round"></path><path d="M12 5V2M12 2H11M12 2H13" stroke="currentColor" stroke-linecap="round"></path></svg>
</template>