Files
DiceCloud/app/imports/ui/components/LabeledFab.vue
2018-10-01 09:38:03 +02:00

22 lines
354 B
Vue

<template>
<v-layout row align-center justify-end>
<v-btn fab small>
<v-icon>
{{icon}}
</v-icon>
</v-btn>
<div class="label pa-2">
{{label}}
</div>
</v-layout>
</template>
<style scoped>
.label {
background-color: #424242;
color: white;
overflow: hidden;
white-space: nowrap;
}
</style>