import { useContext } from 'react'; import { ThemeContext } from '../theme-context/ThemeContext'; import Icon from '../icon/Icon'; import styles from './themeswitch.module.scss'; import React from 'react'; export const Switch = () => { const { toggleTheme, isDark } = useContext(ThemeContext); return (