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