TextWithIconAndButton component
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user