Files
web/components/TempDesignSystem/Text/Body/body.ts
2024-12-12 11:47:44 +01:00

11 lines
287 B
TypeScript

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