Skip to content

Instantly share code, notes, and snippets.

View SinanMtl's full-sized avatar
🏠
Working from home

Sinan Mutlu SinanMtl

🏠
Working from home
View GitHub Profile
@SinanMtl
SinanMtl / Close.vue
Last active May 23, 2019 20:32
Vue Icon Generate as Component
// assets/icons/Close.vue
<template>
<svg class="icon" xmlns="http://www.w3.org/2000/svg" :width='opts.width' :height='opts.height' viewBox="0 0 29 32">
<path :fill="opts.color" d="M27.507 7.418l-4.525-4.525-9.050 9.050-9.053-9.050-4.525 4.525 9.050 9.050-9.050 9.053 4.525 4.525 9.053-9.050 9.050 9.050 4.525-4.525-9.050-9.053z"></path>
</svg>
</template>
<script>
import icon from '@/mixins/icon'