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

12 lines
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="M6 3L6 21" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18 3L18 21" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 6L21 6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M9.6 9H14.4C14.7314 9 15 9.26863 15 9.6V14.4C15 14.7314 14.7314 15 14.4 15H9.6C9.26863 15 9 14.7314 9 14.4V9.6C9 9.26863 9.26863 9 9.6 9Z" fill="currentColor"></path><path d="M3 18L21 18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
</template>