1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-27 17:19:37 +02:00

feat(app): tools management base

This commit is contained in:
Corentin Thomasset 2024-10-26 10:54:32 +02:00
parent 202896fa95
commit b22173681c
No known key found for this signature in database
GPG key ID: DBD997E935996158
29 changed files with 1372 additions and 45 deletions

View file

@ -0,0 +1,14 @@
<script setup lang="ts">
import type { HTMLAttributes } from 'vue'
import { cn } from '@/src/modules/shared/style/cn'
const props = defineProps<{
class?: HTMLAttributes['class']
}>()
</script>
<template>
<p :class="cn('text-sm text-muted-foreground', props.class)">
<slot />
</p>
</template>