first commit

This commit is contained in:
qier222 2020-10-10 19:54:44 +08:00
commit e4ba16b9a2
102 changed files with 19066 additions and 0 deletions

View file

@ -0,0 +1,33 @@
<template>
<svg-icon icon-class="explicit" :style="svgStyle"></svg-icon>
</template>
<script>
import SvgIcon from "@/components/SvgIcon.vue";
export default {
name: "ExplicitSymbol",
components: {
SvgIcon,
},
props: {
size: {
type: Number,
default: 16,
},
},
data() {
return {
svgStyle: {},
};
},
created() {
this.svgStyle = {
height: this.size + "px",
width: this.size + "px",
};
},
};
</script>
<style lang="scss" scoped></style>