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

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> {}