feat: started working on waybar
This commit is contained in:
12
src/components/Waybar/WaybarWidget.tsx
Normal file
12
src/components/Waybar/WaybarWidget.tsx
Normal 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>
|
||||
);
|
||||
Reference in New Issue
Block a user