19 lines
No EOL
346 B
Vue
19 lines
No EOL
346 B
Vue
<template>
|
|
<article class="TimelineCard">
|
|
<Icon class="icon" :name="icon" mode="svg" />
|
|
<div class="text">
|
|
<strong>{{ title }}</strong>
|
|
<p>{{ description }}</p>
|
|
</div>
|
|
</article>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
type Props = {
|
|
icon: string
|
|
title: string
|
|
description: string
|
|
}
|
|
|
|
defineProps<Props>()
|
|
</script> |