refactor: use shared classNames from @quartz-community/utils

This commit is contained in:
saberzero1 2026-04-03 19:12:30 +02:00
parent 641e4db39d
commit 68f4748cd3
No known key found for this signature in database

View file

@ -1,3 +1 @@
export function classNames(...classes: (string | undefined | null | false)[]): string {
return classes.filter(Boolean).join(" ");
}
export { classNames } from "@quartz-community/utils/lang";