mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
25 lines
410 B
Vue
25 lines
410 B
Vue
<template>
|
|
<b class="theme-label">
|
|
<slot></slot>
|
|
</b>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'TextLabel',
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '../../../sass/vuefilemanager/variables';
|
|
@import '../../../sass/vuefilemanager/mixins';
|
|
|
|
.theme-label {
|
|
@include font-size(14);
|
|
color: $theme;
|
|
font-weight: 600;
|
|
display: block;
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|