update Button and ButtonGroup component. Start separating "crm-" named components for future updates

This commit is contained in:
2025-11-21 08:38:46 +01:00
parent 1bd8178104
commit 4e578b6cbe
22 changed files with 549 additions and 38 deletions
@@ -0,0 +1,19 @@
<script setup lang="ts">
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
const props = defineProps<{
class?: HTMLAttributes["class"]
}>()
</script>
<template>
<span
:class="cn(
'text-muted-foreground flex items-center gap-2 text-sm [&_svg]:pointer-events-none [&_svg:not([class*=\'size-\'])]:size-4',
props.class,
)"
>
<slot />
</span>
</template>