Added more icons
This commit is contained in:
parent
03b4faa17e
commit
fddfceb5e4
23
client/src/components/icons/ArrowLeftBold.vue
Normal file
23
client/src/components/icons/ArrowLeftBold.vue
Normal file
@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<svg-icon type="mdi" :path="path"></svg-icon>
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
import SvgIcon from '@jamescoyle/vue-icon'
|
||||
import { mdiArrowLeftBold } from '@mdi/js'
|
||||
|
||||
export default {
|
||||
name: "mdiArrowLeftBold",
|
||||
|
||||
components: {
|
||||
SvgIcon
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
path: mdiArrowLeftBold,
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
23
client/src/components/icons/ArrowRightBold.vue
Normal file
23
client/src/components/icons/ArrowRightBold.vue
Normal file
@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<svg-icon type="mdi" :path="path"></svg-icon>
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
import SvgIcon from '@jamescoyle/vue-icon'
|
||||
import { mdiArrowRightBold } from '@mdi/js'
|
||||
|
||||
export default {
|
||||
name: "mdiArrowRightBold",
|
||||
|
||||
components: {
|
||||
SvgIcon
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
path: mdiArrowRightBold,
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
23
client/src/components/icons/FleurDeLis.vue
Normal file
23
client/src/components/icons/FleurDeLis.vue
Normal file
@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<svg-icon type="mdi" :path="path"></svg-icon>
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
import SvgIcon from '@jamescoyle/vue-icon'
|
||||
import { mdiFleurDeLis } from '@mdi/js'
|
||||
|
||||
export default {
|
||||
name: "MdiHome",
|
||||
|
||||
components: {
|
||||
SvgIcon
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
path: mdiFleurDeLis,
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
23
client/src/components/icons/RoadVariant.vue
Normal file
23
client/src/components/icons/RoadVariant.vue
Normal file
@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<svg-icon type="mdi" :path="path"></svg-icon>
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
import SvgIcon from '@jamescoyle/vue-icon'
|
||||
import { mdiRoadVariant } from '@mdi/js'
|
||||
|
||||
export default {
|
||||
name: "mdiRoadVariant",
|
||||
|
||||
components: {
|
||||
SvgIcon
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
path: mdiRoadVariant,
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
Loading…
Reference in New Issue
Block a user