Files
web/components/TempDesignSystem/Text/Footnote/footnote.ts
2024-06-19 14:51:00 +02:00

11 lines
294 B
TypeScript

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