mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 18:48:28 -04:00
43 lines
938 B
TypeScript
43 lines
938 B
TypeScript
import clsx from "clsx";
|
|
import Link from "../Link";
|
|
import type { Route } from "next";
|
|
import type { IconType } from "react-icons";
|
|
|
|
import styles from "./MenuItem.module.css";
|
|
|
|
export type MenuItemProps = {
|
|
Icon?: IconType;
|
|
text?: string;
|
|
href?: Route;
|
|
current?: boolean;
|
|
className?: string;
|
|
};
|
|
|
|
const MenuItem = ({ Icon, text, href, current, className }: MenuItemProps) => {
|
|
const item = (
|
|
<>
|
|
{Icon && <Icon className={styles.icon} />}
|
|
{text && <span className={styles.label}>{text}</span>}
|
|
</>
|
|
);
|
|
|
|
// allow both navigational links and/or other interactive react components (e.g. the theme toggle)
|
|
if (href) {
|
|
return (
|
|
<Link
|
|
href={href}
|
|
className={clsx(styles.link, current && styles.current, className)}
|
|
title={text}
|
|
underline={false}
|
|
aria-label={text}
|
|
>
|
|
{item}
|
|
</Link>
|
|
);
|
|
}
|
|
|
|
return item;
|
|
};
|
|
|
|
export default MenuItem;
|