10 lines
270 B
TypeScript
10 lines
270 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> {
|
|
asChild?: boolean
|
|
}
|