-
Haelwenn authored
git diff --name-only 48e47e86..origin/develop | while read name; do test -e "$name" && reuse addheader --year 2019-2022 --copyright 'Pleroma Authors <https://pleroma.social>' --license 'AGPL-3.0-only' "$name"; done
Haelwenn authoredgit diff --name-only 48e47e86..origin/develop | while read name; do test -e "$name" && reuse addheader --year 2019-2022 --copyright 'Pleroma Authors <https://pleroma.social>' --license 'AGPL-3.0-only' "$name"; done
index.vue 815 B
<!--
SPDX-FileCopyrightText: 2019-2022 Pleroma Authors <https://pleroma.social>
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<svg :class="svgClass" aria-hidden="true" v-on="$listeners">
<use :xlink:href="iconName"/>
</svg>
</template>
<script>
export default {
name: 'SvgIcon',
props: {
iconClass: {
type: String,
required: true
},
className: {
type: String,
default: ''
}
},
computed: {
iconName() {
return `#icon-${this.iconClass}`
},
svgClass() {
if (this.className) {
return 'svg-icon ' + this.className
} else {
return 'svg-icon'
}
}
}
}
</script>
<style scoped>
.svg-icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
</style>