mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-11-14 06:20:48 -05:00
icons weren't being tree-shaken
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
import dynamic from "next/dynamic";
|
||||
import Link from "next/link";
|
||||
import { HomeIcon, NotesIcon, ProjectsIcon, ContactIcon } from "../icons";
|
||||
import HomeIcon from "../icons/svg/home.svg";
|
||||
import NotesIcon from "../icons/svg/notes.svg";
|
||||
import ProjectsIcon from "../icons/svg/projects.svg";
|
||||
import ContactIcon from "../icons/svg/contact.svg";
|
||||
|
||||
import styles from "./Menu.module.scss";
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { useState, useEffect, useCallback } from "react";
|
||||
import { BulbOffIcon, BulbOnIcon } from "../icons";
|
||||
import BulbOffIcon from "../icons/svg/bulb-off.svg";
|
||||
import BulbOnIcon from "../icons/svg/bulb-on.svg";
|
||||
|
||||
import styles from "./ThemeToggle.module.scss";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user