Files
web/components/TempDesignSystem/Form/Label/label.ts
2024-06-19 14:51:00 +02:00

10 lines
272 B
TypeScript

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