// Path: Frontend/src/components/shell/TopBar/TopBar.tsx import { For, type JSX } from "solid-js"; import { ChevronDown } from "../../../lib/icons"; import type { Theme } from "../../../theme/runtime"; import { topBarActions } from "../data/shell.data"; import styles from "./TopBar.module.scss"; type TopBarProps = { theme: Theme; onToggleTheme: VoidFunction; }; export const TopBar = (props: TopBarProps): JSX.Element => { return (
Moku Work
Workspace Shell Moku / Product
{(item): JSX.Element => { const Icon = item.icon; return ( ); }}
); };