forked from Qortal-Forker/q-support
24 lines
797 B
TypeScript
24 lines
797 B
TypeScript
import { IconTypes } from './IconTypes'
|
|
|
|
export const DarkModeSVG: React.FC<IconTypes> = ({
|
|
color,
|
|
height,
|
|
width,
|
|
className,
|
|
onClickFunc
|
|
}) => {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
onClick={onClickFunc}
|
|
fill={color}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
height={height}
|
|
viewBox="0 96 960 960"
|
|
width={width}
|
|
>
|
|
<path d="M480 936q-150 0-255-105T120 576q0-150 105-255t255-105q8 0 17 .5t23 1.5q-36 32-56 79t-20 99q0 90 63 153t153 63q52 0 99-18.5t79-51.5q1 12 1.5 19.5t.5 14.5q0 150-105 255T480 936Zm0-60q109 0 190-67.5T771 650q-25 11-53.667 16.5Q688.667 672 660 672q-114.689 0-195.345-80.655Q384 510.689 384 396q0-24 5-51.5t18-62.5q-98 27-162.5 109.5T180 576q0 125 87.5 212.5T480 876Zm-4-297Z" />
|
|
</svg>
|
|
)
|
|
}
|