mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-21 10:28:10 +00:00
9 lines
471 B
TypeScript
9 lines
471 B
TypeScript
import { createIcon } from '@chakra-ui/icons';
|
|
|
|
export const MoonIcon = createIcon({
|
|
displayName: 'MoonIcon',
|
|
viewBox: '0 0 22 22',
|
|
path: (
|
|
<svg width="22" height="22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.333.334C6.392.334 4.568.867 3 1.774c3.19 1.845 5.333 5.28 5.333 9.227 0 3.946-2.144 7.381-5.333 9.226a10.638 10.638 0 0 0 5.333 1.44C14.221 21.667 19 16.89 19 11.001 19 5.113 14.221.334 8.333.334z" fill="currentColor"/></svg>
|
|
)
|
|
});
|