import { bodyVariants } from "./variants" import type { BodyProps } from "./body" export default function Body({ children, className = "", color, textTransform, }: BodyProps) { const classNames = bodyVariants({ className, color, textTransform, }) return
{children}
}