21 lines
318 B
Vue
21 lines
318 B
Vue
|
|
<script setup>
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<view class="!py-[14rpx] !px-[24rpx] text">
|
||
|
|
<slot></slot>
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.text {
|
||
|
|
color: rgb(29, 33, 41);
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 400;
|
||
|
|
line-height: 140%;
|
||
|
|
letter-spacing: 0;
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
</style>
|