Initialize project using Create React App
This commit is contained in:
23
src/ColorModeSwitcher.js
Normal file
23
src/ColorModeSwitcher.js
Normal file
@@ -0,0 +1,23 @@
|
||||
import React from 'react';
|
||||
import { useColorMode, useColorModeValue, IconButton } from '@chakra-ui/react';
|
||||
import { FaMoon, FaSun } from 'react-icons/fa';
|
||||
|
||||
export const ColorModeSwitcher = props => {
|
||||
const { toggleColorMode } = useColorMode();
|
||||
const text = useColorModeValue('dark', 'light');
|
||||
const SwitchIcon = useColorModeValue(FaMoon, FaSun);
|
||||
|
||||
return (
|
||||
<IconButton
|
||||
size="md"
|
||||
fontSize="lg"
|
||||
aria-label={`Switch to ${text} mode`}
|
||||
variant="ghost"
|
||||
color="current"
|
||||
marginLeft="2"
|
||||
onClick={toggleColorMode}
|
||||
icon={<SwitchIcon />}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user