import { ReactNode } from "react" import { Link } from "react-router-dom" import { TriangleRightMini } from "@medusajs/icons" import { Text } from "@medusajs/ui" import { IconAvatar } from "../icon-avatar" export interface SidebarLinkProps { to: string labelKey: string descriptionKey: string icon: ReactNode } export const SidebarLink = ({ to, labelKey, descriptionKey, icon, }: SidebarLinkProps) => { return (
{icon}
{labelKey} {descriptionKey}
) }