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

12 lines
946 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="M17 13H12V8" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5 3.5L7 2" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M19 3.5L17 2" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 22C16.9706 22 21 17.9706 21 13C21 8.02944 16.9706 4 12 4C7.02944 4 3 8.02944 3 13C3 17.9706 7.02944 22 12 22Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
</template>