SPB Git

spb/spboucher.ai Public

spboucher.ai — personal website of Simon-Pierre Boucher.

TypeScript 93.6% HTML 5.4% CSS 0.9%
266 B · 14 lines typescript
Raw Blame History
1/*2  utils.ts3  spboucher.ai Web4  Author: Simon-Pierre Boucher5  Mail: contact@spboucher.ai6*/78import { clsx, type ClassValue } from "clsx";9import { twMerge } from "tailwind-merge";1011export function cn(...inputs: ClassValue[]) {12  return twMerge(clsx(inputs));13}14