Added login design

This commit is contained in:
Francisco Gaona
2025-11-25 18:58:49 +01:00
parent 484af68571
commit 150edfaf41
21 changed files with 9715 additions and 187 deletions

View File

@@ -0,0 +1,29 @@
<script setup lang="ts">
import type { HTMLAttributes } from "vue"
import { reactiveOmit } from "@vueuse/core"
import { Label } from "reka-ui"
import { cn } from "@/lib/utils"
interface Props {
for?: string
class?: HTMLAttributes["class"]
}
const props = defineProps<Props>()
const delegatedProps = reactiveOmit(props, "class")
</script>
<template>
<Label
v-bind="delegatedProps"
:class="
cn(
'text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70',
props.class,
)
"
>
<slot />
</Label>
</template>

View File

@@ -0,0 +1 @@
export { default as Label } from "./Label.vue"