Add src/lib/ utils.js

This commit is contained in:
Eric Lay 2026-03-11 08:49:58 -05:00
parent 1bb06c4f1b
commit 502d00d1d4
1 changed files with 9 additions and 0 deletions

9
src/lib/ utils.js Normal file
View File

@ -0,0 +1,9 @@
import { clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs) {
return twMerge(clsx(inputs))
}
export const isIframe = window.self !== window.top;