mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 19:51:09 -04:00
23 lines
346 B
Vue
23 lines
346 B
Vue
<template>
|
|
<div
|
|
class="
|
|
flex
|
|
items-center
|
|
justify-center
|
|
w-full
|
|
px-6
|
|
py-2
|
|
text-sm
|
|
bg-gray-200
|
|
cursor-pointer
|
|
text-primary-400
|
|
dark:bg-gray-600/70
|
|
dark:backdrop-blur-xl
|
|
dark:shadow-glass
|
|
dark:hover:bg-gray-600/80
|
|
"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</template>
|