This commit is contained in:
hh
2021-11-22 09:17:41 +08:00
parent a348257a03
commit 4a9d1675e5
42 changed files with 1405 additions and 28 deletions

View File

@ -0,0 +1,52 @@
<template>
<div class="rocketTit">
<img class="rocket" src="./rocket.png" alt="">
<span><slot /></span>
</div>
</template>
<script>
export default {
name: 'RocketTit',
props: {
title: {
type: String,
default: '',
},
selected: {
type: Boolean,
default: false,
},
},
data () {
return {
}
},
}
</script>
<style lang="scss" scoped>
.rocket {
width: 17.5px;
height: 17.5px;
margin-right: 10px;
vertical-align: middle;
}
.rocketTit {
font-size: 16px;
font-family: PingFangSC-Semibold, PingFang SC;
font-weight: 600;
color: #FFFFFF;
line-height: 22px;
vertical-align: middle;
span {
vertical-align: middle;
}
}
</style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB