mirror of
https://github.com/dtomlinson91/anno-production-chain-renderer.git
synced 2025-12-22 06:15:45 +00:00
add latest
This commit is contained in:
20
src/components/InfoCard/InfoCardItem.vue
Normal file
20
src/components/InfoCard/InfoCardItem.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<template>
|
||||
<q-item>
|
||||
<q-item-section avatar>
|
||||
<q-img :src="icon" class="info-icon"></q-img>
|
||||
</q-item-section>
|
||||
<q-item-section>
|
||||
<q-item-label>{{ text }}</q-item-label>
|
||||
<q-item-label>{{ additionalText }}</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
// Props
|
||||
defineProps<{
|
||||
icon: string;
|
||||
text: string;
|
||||
additionalText?: string;
|
||||
}>();
|
||||
</script>
|
||||
Reference in New Issue
Block a user