Files
web/components/TempDesignSystem/Text/CaptionLabel/captionLabel.ts
2024-10-25 14:02:32 +02:00

11 lines
296 B
TypeScript

import { captionVariants } from "./variants"
import type { VariantProps } from "class-variance-authority"
export interface CaptionLabelProps
extends Omit<React.HTMLAttributes<HTMLHeadingElement>, "color">,
VariantProps<typeof captionVariants> {
asChild?: boolean
fontOnly?: boolean
}