import React from "react"; import {tv} from "tailwind-variants"; import {clsx} from "@heroui/shared-utils"; export type WindowActionsProps = { title?: string; className?: string; }; const windowIconStyles = tv({ base: "w-3 h-3 rounded-full", variants: { color: { red: "bg-red-500", yellow: "bg-yellow-500", green: "bg-green-500", }, }, }); export const WindowActions: React.FC = ({title, className, ...props}) => { return (
{title &&

{title}

}
); };