8 lines
240 B
TypeScript
8 lines
240 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> {}
|