feat: started working on waybar

This commit is contained in:
Pihkaal
2024-02-08 00:40:51 +01:00
parent e778631828
commit 71ab32c53a
18 changed files with 203 additions and 5 deletions

4
src/utils/react.ts Normal file
View File

@@ -0,0 +1,4 @@
import clsx, { type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export const cn = (...values: Array<ClassValue>) => twMerge(clsx(...values));