1
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:
2025-03-12 09:44:06 -04:00
parent 8e89701453
commit 5b2caf4a96
21 changed files with 748 additions and 155 deletions

View File

@@ -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>
);