Files
web/components/TempDesignSystem/Form/Label/label.ts
2024-12-12 11:47:44 +01:00

10 lines
277 B
TypeScript

import type { VariantProps } from "class-variance-authority"
import type { labelVariants } from "./variants"
export interface LabelProps
extends React.PropsWithChildren<React.HTMLAttributes<HTMLSpanElement>>,
VariantProps<typeof labelVariants> {
required?: boolean
}