viveksantayana fd1c4ee14d Built skeleton for the web site.
Need to write the text and make the quiz console.
2022-08-28 07:07:52 +01:00

23 lines
358 B
Vue

<template>
<svg-icon type="mdi" :path="path"></svg-icon>
</template>
<script>
import SvgIcon from '@jamescoyle/vue-icon'
import { mdiAccountQuestion } from '@mdi/js'
export default {
name: "MdiAccountQuestion",
components: {
SvgIcon
},
data() {
return {
path: mdiAccountQuestion,
}
}
}
</script>