frontend/app/components/ui/input-group/InputGroupText.vue

18 lines
407 B
Vue
Raw Normal View History

<script setup lang="ts">
import type { HTMLAttributes } from "vue";
import { cn } from "@/lib/utils";
const props = defineProps<{
class?: HTMLAttributes["class"];
}>();
</script>
2026-01-09 21:47:12 +01:00
<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,
)"
2026-01-09 21:47:12 +01:00
>
<slot />
</span></template>