mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-04-17 07:04:40 +00:00
* chore: update constants * feat: add releases data utils * chore: add fast-xml-parser * chore: update types * feat: fetch & parse all releases data * chore: update utils * wip: use real data on DataTable * chore: update yarn.lock * fix: getReleaseCommitHash * feat: filter data per downloads tab * chore: update DownloadsTable * chore: update DownloadsTable Props * fix: getReleaseArch.ts * feat: add fetchXMLData util * feat: add fetchLatestReleaseCommit util * feat: add getSortedReleases util * chore: comment wip primary release feature * fix: fetchXMLData * chore: add netlify.toml * fix: total number of releases count * fix: center showing latest releases text and use smaller font * chore: prettier * chore: update textStyles * fix: merge conflicts
34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
import { createIcon } from '@chakra-ui/icons';
|
|
|
|
export const SunIcon = createIcon({
|
|
displayName: 'SunIcon',
|
|
viewBox: '0 0 44 44',
|
|
path: (
|
|
<svg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'>
|
|
<path d='M21 0H23V12H21V0Z' fill='currentColor' />
|
|
<path d='M0 23V21H12V23H0Z' fill='currentColor' />
|
|
<path d='M44 21H32V23H44V21Z' fill='currentColor' />
|
|
<path d='M21 32H23V44H21V32Z' fill='currentColor' />
|
|
<path
|
|
d='M7.15074 5.73633L5.73653 7.15054L14.2218 15.6358L15.636 14.2216L7.15074 5.73633Z'
|
|
fill='currentColor'
|
|
/>
|
|
<path
|
|
d='M36.8493 5.73618L38.2635 7.15039L29.7782 15.6357L28.364 14.2215L36.8493 5.73618Z'
|
|
fill='currentColor'
|
|
/>
|
|
<path
|
|
d='M29.7782 28.3643L28.364 29.7785L36.8492 38.2638L38.2635 36.8495L29.7782 28.3643Z'
|
|
fill='currentColor'
|
|
/>
|
|
<path
|
|
d='M14.2218 28.3641L15.636 29.7783L7.15076 38.2636L5.73655 36.8494L14.2218 28.3641Z'
|
|
fill='currentColor'
|
|
/>
|
|
<path
|
|
d='M30 22C30 26.4183 26.4183 30 22 30C17.5817 30 14 26.4183 14 22C14 17.5817 17.5817 14 22 14C26.4183 14 30 17.5817 30 22Z'
|
|
fill='currentColor'
|
|
/>
|
|
</svg>
|
|
)
|
|
});
|