forked from opentiny/tiny-vue
35 lines
594 B
Vue
35 lines
594 B
Vue
<template>
|
|
<tiny-user-head>
|
|
<div class="content">
|
|
<span>
|
|
<tiny-icon-mail></tiny-icon-mail>
|
|
</span>
|
|
Mail
|
|
</div>
|
|
</tiny-user-head>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { UserHead as TinyUserHead } from '@opentiny/vue'
|
|
import { iconMail } from '@opentiny/vue-icon'
|
|
|
|
const TinyIconMail = iconMail()
|
|
</script>
|
|
|
|
<style scoped>
|
|
.content {
|
|
fill: var(--ti-common-color-line-active);
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
font-style: oblique;
|
|
font-weight: 600;
|
|
font-size: 2em;
|
|
}
|
|
|
|
.content svg {
|
|
width: 1.5em;
|
|
height: 1.5em;
|
|
}
|
|
</style>
|