import { For, type JSX } from "solid-js"; import { User } from "../../../lib/icons"; import { useAppShellData } from "../data/app-shell.context"; import { profileMenuSections } from "../data/shell.data"; import styles from "./ProfileMenu.module.scss"; type ProfileMenuProps = { id: string; menuRef?: (element: HTMLDivElement) => void; onSelect: () => void; variant?: "popover" | "workspace"; }; export const ProfileMenu = (props: ProfileMenuProps): JSX.Element => { const variant = props.variant ?? "popover"; const appShellData = useAppShellData(); const activeUserProfile = () => appShellData.activeUserProfile(); return ( ); };