mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-09-18 16:05:33 -04:00
add stylelint
This commit is contained in:
@@ -6,7 +6,6 @@ import MenuItem from "../MenuItem";
|
||||
import ThemeToggle from "../ThemeToggle";
|
||||
import { menuItems } from "../../lib/config/menu";
|
||||
import type { ComponentPropsWithoutRef } from "react";
|
||||
import type { LucideIcon } from "lucide-react";
|
||||
|
||||
import styles from "./Menu.module.css";
|
||||
|
||||
@@ -29,7 +28,10 @@ const Menu = ({ className, ...rest }: MenuProps) => {
|
||||
})}
|
||||
|
||||
<li className={styles.menuItem}>
|
||||
<MenuItem icon={ThemeToggle as LucideIcon} />
|
||||
<MenuItem
|
||||
// @ts-expect-error
|
||||
icon={ThemeToggle}
|
||||
/>
|
||||
</li>
|
||||
</ul>
|
||||
);
|
||||
|
Reference in New Issue
Block a user