Files
speckle-server/packages/frontend-2/components/project/page/StatsBlock.vue
T
Kristaps Fabians Geikins b02a07e2b6 feat: Frontend 2.0 MVP
2023-05-08 10:47:01 +03:00

14 lines
303 B
Vue

<template>
<div class="bg-foundation rounded-lg py-4 px-6">
<div class="flex flex-col">
<div class="text-foreground-2 mb-2">
<slot name="top" />
</div>
<div class="text-foreground">
<slot name="bottom" />
</div>
</div>
<slot />
</div>
</template>