10 lines
275 B
TypeScript
10 lines
275 B
TypeScript
import { subtitleVariants } from "./variants"
|
|
|
|
import type { VariantProps } from "class-variance-authority"
|
|
|
|
export interface SubtitleProps
|
|
extends Omit<React.HTMLAttributes<HTMLHeadingElement>, "color">,
|
|
VariantProps<typeof subtitleVariants> {
|
|
hideEmpty?: boolean
|
|
}
|