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

11 lines
301 B
TypeScript

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