import { cn } from "../libs/utils" import { type VariantProps, cva } from "class-variance-authority" import { type HTMLAttributes, forwardRef } from "react" // Update the text variants to match the new sizing requirements const textVariants = cva("text-foreground", { variants: { size: { xl: "text-base md:text-lg leading-relaxed", lg: "text-base leading-relaxed", default: "text-sm leading-normal", sm: "text-sm leading-normal", xs: "text-xs leading-normal", }, weight: { normal: "font-normal", medium: "font-medium", semibold: "font-semibold", }, }, defaultVariants: { size: "default", weight: "normal", }, }) export interface TextProps extends HTMLAttributes, VariantProps {} export const Text = forwardRef(({ className, size, weight, ...props }, ref) => { return

}) Text.displayName = "Text"