forked from potsda.mn/mobilizon
aaa1111cab
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
21 lines
441 B
Vue
21 lines
441 B
Vue
<template>
|
|
<img src="../assets/mobilizon_logo.svg" alt="Mobilizon">
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Prop, Vue } from 'vue-property-decorator';
|
|
|
|
@Component
|
|
export default class Logo extends Vue {
|
|
@Prop({ type: Boolean, required: false, default: false }) invert!: boolean;
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
@import "../variables.scss";
|
|
|
|
img {
|
|
color: #403e56;
|
|
height: 80px;
|
|
}
|
|
</style>
|