Files
web/components/TempDesignSystem/Text/Preamble/preamble.ts
2024-12-12 11:47:44 +01:00

10 lines
277 B
TypeScript

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