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 a7ba084a78
commit c167d7759e
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"
import { Textarea } from '@/components/ui/textarea'
const props = defineProps<{
class?: HTMLAttributes["class"]
}>()
</script>
<template>
<Textarea
data-slot="input-group-control"
:class="cn(
'flex-1 resize-none rounded-none border-0 bg-transparent py-3 shadow-none focus-visible:ring-0 focus-visible:ring-transparent ring-offset-transparent dark:bg-transparent',
props.class,
)"
/>
</template>