Files
speckle-server/packages/frontend-2/components/workspace/wizard/step/Step.vue
T
2024-12-04 14:19:52 +01:00

21 lines
439 B
Vue

<template>
<div>
<div class="flex flex-col items-center gap-y-3">
<h1 class="text-heading-xl text-center">{{ title }}</h1>
<p v-if="description" class="text-body text-foreground-2">
{{ description }}
</p>
</div>
<div class="flex flex-col items-center pt-8">
<slot />
</div>
</div>
</template>
<script setup lang="ts">
defineProps<{
title: string
description?: string
}>()
</script>