Files
web/components/TempDesignSystem/Text/Body/body.ts

11 lines
282 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
}