"use client"; import type { CSSProperties } from "react"; /** CSS interpolates real font axes; browsers without variable fonts keep readable text. */ export function SoftType({ text = "Aa", mode = "weight", speed = 1, min = 100, max = 900, className = "", style, label, }: { text?: string; mode?: "weight" | "width" | "both"; speed?: number; min?: number; max?: number; className?: string; style?: CSSProperties; label?: string; }) { return (