feat: add custom icons to the website

This commit adds icons from various sources as a single font file to the website. Icons can be
inserted with the new Icon component.
This commit is contained in:
2023-05-08 15:33:22 +02:00
parent 9641f40f65
commit 5fbab2eefc
8 changed files with 176 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
<template>
<i :class="`icon phunic-${props.name}`" />
</template>
<script setup lang="ts">
const props = defineProps({
name: {
default: '',
required: true,
type: String,
},
});
</script>
<style lang="less">
@import '../styles/fonts.less';
</style>