11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
import { bodyVariants } from "./variants"
|
|
|
|
import type { VariantProps } from "class-variance-authority"
|
|
|
|
export interface BodyProps
|
|
extends Omit<React.HTMLAttributes<HTMLHeadingElement>, "color">,
|
|
VariantProps<typeof bodyVariants> {
|
|
asChild?: boolean
|
|
fontOnly?: boolean
|
|
}
|