summaryrefslogtreecommitdiffstats
path: root/src/components/Icons/index.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-12-27 11:20:26 +0100
committerArmand Philippot <git@armandphilippot.com>2021-12-27 11:20:26 +0100
commit395571bd89498fce46d37f3853cf718387fd0d9a (patch)
tree0b1a405fb82484e31f62f72485feac18ebd29ae2 /src/components/Icons/index.tsx
parent7deed83dbb8835727c743662bee776794d460e74 (diff)
chore: add a theme toggle
Dark theme is not implemented yet.
Diffstat (limited to 'src/components/Icons/index.tsx')
-rw-r--r--src/components/Icons/index.tsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/Icons/index.tsx b/src/components/Icons/index.tsx
index b32c3d3..9144619 100644
--- a/src/components/Icons/index.tsx
+++ b/src/components/Icons/index.tsx
@@ -4,7 +4,10 @@ import ContactIcon from './Contact/Contact';
import CVIcon from './CV/CV';
import HamburgerIcon from './Hamburger/Hamburger';
import HomeIcon from './Home/Home';
+import MoonIcon from './Moon/Moon';
import SearchIcon from './Search/Search';
+import SunIcon from './Sun/Sun';
+import ThemeIcon from './Theme/Theme';
export {
BlogIcon,
@@ -13,5 +16,8 @@ export {
CVIcon,
HamburgerIcon,
HomeIcon,
+ MoonIcon,
SearchIcon,
+ SunIcon,
+ ThemeIcon,
};