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

12 lines
1.2 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" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="context"><path d="M7 15V12M7 12V9H10L10 12H7Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M16 9H13L13 15L16 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M22 9H19V15L22 15V12.6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M4 9C4 9 4 11.4 4 13.2C4 15 2 15 2 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M13 12H15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M4 6V3.6C4 3.26863 4.26863 3 4.6 3H19.4C19.7314 3 20 3.26863 20 3.6V6" stroke="currentColor" stroke-linecap="round"></path><path d="M4 18V20.4C4 20.7314 4.26863 21 4.6 21H19.4C19.7314 21 20 20.7314 20 20.4V18" stroke="currentColor" stroke-linecap="round"></path></svg>
</template>