import * as React from "react"; import { Button } from "./button"; import { cn } from "../../lib/utils"; interface TopBarProps { className?: string; onDownloadClick?: () => void; onAccountClick?: () => void; } const TopBar = React.forwardRef( ({ className, onDownloadClick, onAccountClick, ...props }, ref) => { return (
{/* Logo */}
📊
sheetEasy AI
{/* Actions */}
); }, ); TopBar.displayName = "TopBar"; export { TopBar };