Juan Felipe Zapata Moreno 9c6eeb5fb3 Commit Inicial
2025-08-05 09:52:38 -06:00

18 lines
458 B
Vue

<template>
<div class="md:col-span-1 flex justify-between">
<div class="px-4 sm:px-0 text-main-on dark:text-main-dark-on">
<h3 class="text-lg font-medium">
<slot name="title" />
</h3>
<p class="mt-1 text-sm">
<slot name="description" />
</p>
</div>
<div class="px-4 sm:px-0">
<slot name="aside" />
</div>
</div>
</template>