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

View File

@@ -0,0 +1,12 @@
import { type ReactNode } from "react";
import { cn } from "~/utils/react";
export const WaybarWidget = (props: {
className?: string;
tooltip?: string;
children: ReactNode | Array<ReactNode>;
}) => (
<div className={cn("font-bold text-[#2b2b2c] ", props.className)}>
{props.children}
</div>
);