Files
web/components/TempDesignSystem/Text/Preamble/preamble.ts
2024-07-10 07:57:11 +02:00

10 lines
272 B
TypeScript

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