import { For, type JSX } from "solid-js"; import { User } from "../../../lib/icons"; import { activeUserProfile, 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"; return (