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:
parent
202896fa95
commit
b22173681c
29 changed files with 1372 additions and 45 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue