aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/BahaiStar.vue15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/components/BahaiStar.vue b/src/components/BahaiStar.vue
new file mode 100644
index 0000000..1aa171c
--- /dev/null
+++ b/src/components/BahaiStar.vue
@@ -0,0 +1,15 @@
+<template><span class="bahaistar">&#x1F7D9;</span></template>
+
+<style scoped>
+@font-face {
+ font-family: "Noto Sans Symbols 2";
+ src: url(https://cdn.jsdelivr.net/gh/notofonts/notofonts.github.io/fonts/NotoSansSymbols2/full/otf/NotoSansSymbols2-Regular.otf),
+ url(../assets/NotoSansSymbols2-Regular.otf),
+ local("Noto Sans Symbols 2"),
+ local("Noto Sans Symbols2");
+}
+
+.bahaistar {
+ font-family: "Noto Sans Symbols 2", sans-serif;
+}
+</style>