11 lines
296 B
TypeScript
11 lines
296 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
|
|
}
|