8 lines
252 B
TypeScript
8 lines
252 B
TypeScript
import { footnoteVariants } from "./variants"
|
|
|
|
import type { VariantProps } from "class-variance-authority"
|
|
|
|
export interface FootnoteProps
|
|
extends Omit<React.HTMLAttributes<HTMLHeadingElement>, "color">,
|
|
VariantProps<typeof footnoteVariants> {}
|