FIRE calculator

This commit is contained in:
2025-04-29 18:32:26 +02:00
parent a1e9b667f3
commit 97fa489d6c
5 changed files with 403 additions and 66 deletions

View File

@ -1,6 +1,6 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
return twMerge(clsx(...inputs));
}