WIP: refs #6416 - refactor-InvoiceIn #196

Closed
jsegarra wants to merge 17 commits from 6416-refactor-InvoiceIn into dev
1 changed files with 13 additions and 0 deletions
Showing only changes of commit a06b796a13 - Show all commits

View File

@ -0,0 +1,13 @@
<script setup>
import { useI18n } from 'vue-i18n';
const $props = defineProps({
name: { type: String, require: true, default: null },
color: { type: String, require: true, default: null },
});
const { t } = useI18n();
</script>
<template>
<QIcon :name="$props.name" :color="$props.color" />
</template>
<style lang="scss" scoped></style>