mirror of
https://github.com/TwiN/gatus.git
synced 2026-02-04 12:56:48 +00:00
9 lines
228 B
Vue
9 lines
228 B
Vue
<template>
|
|
<div :class="combineClasses('rounded-lg border bg-card text-card-foreground shadow-sm', $attrs.class ?? '')">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { combineClasses } from '@/utils/misc'
|
|
</script> |