TextWithIconAndButton component

This commit is contained in:
María
2025-07-31 13:34:35 +02:00
committed by María
parent 41d2d8a47b
commit dab805e785
6 changed files with 131 additions and 1 deletions

View File

@@ -44,6 +44,11 @@
<p class="text-lg" v-html="paragraph"></p>
</li>
</ul>
<ul v-if="list" class="flex flex-col gap-4">
<li v-for="(item, index) in list" :key="`item-list-${id}-${index}`">
<p class="text-lg" v-html="item"></p>
</li>
</ul>
</div>
</div>
</section>
@@ -62,7 +67,11 @@ export default {
},
paragraphs: {
type: Array,
default: () => ['description']
default: () => []
},
list: {
type: Array,
default: () => []
},
position: {
type: String,