[+] Meruicon component

This commit is contained in:
Hykilpikonna
2021-12-04 15:23:45 -05:00
parent 920ee34f65
commit 3b8efe1795
2 changed files with 23 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

+23
View File
@@ -0,0 +1,23 @@
<template>
<div id="MeruIcon">
<img alt="meru" src="../../public/meru_256px.png">
</div>
</template>
<script lang="ts">
import {Options, Vue} from 'vue-class-component';
@Options({components: {}})
export default class MeruIcon extends Vue
{
}
</script>
<style lang="sass" scoped>
img
width: 160px
position: absolute
left: 0
bottom: 0
</style>