import { IMenuDrawerItem } from "@/components/_Interface/types"; import { AccentColor, MainColor } from "@/constants/color-palet"; import { ICON_SIZE_MEDIUM } from "@/constants/constans-value"; import { Ionicons } from "@expo/vector-icons"; export const drawerItemsProfile = ({ id, }: { id: string; }): IMenuDrawerItem[] => [ { icon: ( ), label: "Edit profile", path: `/(application)/profile/${id}/edit`, }, { icon: ( ), label: "Ubah foto profile", path: `/(application)/profile/${id}/update-photo`, }, { icon: ( ), label: "Ubah latar belakang", path: `/(application)/profile/${id}/update-background`, }, { icon: ( ), label: "Tambah portofolio", path: `/(application)/portofolio/${id}/create`, }, // { // icon: "settings", // label: "Dashboard Admin", // path: `/(application)/profile/dashboard-admin`, // }, { icon: ( ), label: "Keluar", color: MainColor.red, path: "", }, { icon: ( ), label: "Create profile", path: `/(application)/profile/${id}/create`, }, ];