mirror of
https://github.com/SrIzan10/helium.git
synced 2026-06-06 00:56:58 +00:00
26 lines
508 B
Vue
26 lines
508 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from "vue"
|
|
import type { FieldVariants } from "."
|
|
import { cn } from "@/lib/utils"
|
|
import { fieldVariants } from "."
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"]
|
|
orientation?: FieldVariants["orientation"]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
role="group"
|
|
data-slot="field"
|
|
:data-orientation="orientation"
|
|
:class="cn(
|
|
fieldVariants({ orientation }),
|
|
props.class,
|
|
)"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</template>
|