Files
web/components/TempDesignSystem/Text/Body/body.ts
2024-06-19 14:51:00 +02:00

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
}