mirror of
https://github.com/dtomlinson91/anno-production-chain-renderer.git
synced 2025-12-22 06:15:45 +00:00
24 lines
446 B
Vue
24 lines
446 B
Vue
<template>
|
|
<q-item>
|
|
<q-item-section avatar>
|
|
<q-img :src="icon" class="info-icon"></q-img>
|
|
</q-item-section>
|
|
<q-item-section>
|
|
<span>
|
|
{{ text }}
|
|
<q-img :src="worldIcon" class="info-small-icon"></q-img>
|
|
production rates.
|
|
</span>
|
|
</q-item-section>
|
|
</q-item>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// Props
|
|
defineProps<{
|
|
icon: string;
|
|
worldIcon: string;
|
|
text: string;
|
|
}>();
|
|
</script>
|