keanu-weblite/src/components/ActionRow.vue

32 lines
584 B
Vue
Raw Normal View History

<template>
<v-row class="action-row ma-0 pa-0" no-gutters align-content="center" v-on="$listeners">
<v-col cols="auto" class="mr-2">
<v-icon size="22">{{ icon }}</v-icon>
</v-col>
<v-col>{{ text }}</v-col>
</v-row>
</template>
<script>
export default {
name: "ActionRow",
props: {
icon: {
type: String,
default: function () {
return null;
},
},
text: {
type: String,
default: function () {
return "";
},
},
},
};
</script>
<style lang="scss">
@import "@/assets/css/chat.scss";
</style>