Skip to content

Commit

Permalink
apply formatter to site #61
Browse files Browse the repository at this point in the history
  • Loading branch information
ukorvl committed Oct 19, 2023
1 parent 9bee41b commit df45f17
Show file tree
Hide file tree
Showing 54 changed files with 231 additions and 245 deletions.
4 changes: 2 additions & 2 deletions site/src/components/common/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function Footer({ className }: InferProps<typeof Footer.propTypes>) {
<div className={cx(s.root, className)}>
<div className={s.head}>
{isMobile && <WhiteRectangle />}
<Icon name='logo' />
<Icon name="logo" />
<WhiteRectangle />
</div>
<Container className={s.wrapper}>
Expand Down Expand Up @@ -80,7 +80,7 @@ function Footer({ className }: InferProps<typeof Footer.propTypes>) {
</div>
))}
<Button className={s.arrow} onClick={scrollTop}>
<Icon name='arrow-up' />
<Icon name="arrow-up" />
</Button>
</div>
</Container>
Expand Down
8 changes: 4 additions & 4 deletions site/src/components/common/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ function Header({ className, config }: HeaderProps) {
return (
<Container className={cx(s.root, className)}>
<nav className={s.wrapper}>
<Button href='/'>
<Icon name='logo' className={s.logo} />
<Button href="/">
<Icon name="logo" className={s.logo} />
</Button>
{realLinks.main.map((el) => (
<Button
Expand Down Expand Up @@ -90,13 +90,13 @@ function Header({ className, config }: HeaderProps) {
className={cx(s.burgerBtn, {
[s.isBurgerOpen]: isBurgerOpen,
})}
name='cross'
name="cross"
/>
<Icon
className={cx(s.burgerBtn, {
[s.isBurgerOpen]: !isBurgerOpen,
})}
name='squares'
name="squares"
/>
</div>
<BurgerMenu isOpen={isBurgerOpen} />
Expand Down
14 changes: 7 additions & 7 deletions site/src/components/common/Icon/icons/ArrowInCircle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ const ArrowInCircle: SvgIconComponent = ({ className }) => {
return (
<svg
className={className}
width='80'
height='80'
viewBox='0 0 80 80'
fill='none'
xmlns='http://www.w3.org/2000/svg'
width="80"
height="80"
viewBox="0 0 80 80"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d='M40 2C60.976 2 78 19.024 78 40C78 60.976 60.976 78 40 78C19.024 78 2 60.976 2 40C2 19.024 19.024 2 40 2ZM43.8 40V24.8H36.2V40H24.8L40 55.2L55.2 40H43.8Z'
fill='white'
d="M40 2C60.976 2 78 19.024 78 40C78 60.976 60.976 78 40 78C19.024 78 2 60.976 2 40C2 19.024 19.024 2 40 2ZM43.8 40V24.8H36.2V40H24.8L40 55.2L55.2 40H43.8Z"
fill="white"
/>
</svg>
)
Expand Down
6 changes: 3 additions & 3 deletions site/src/components/common/Icon/icons/ArrowUp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { memo } from 'react'
import { SvgIconComponent } from '../SvgIconComponent'

const ArrowUp: SvgIconComponent = ({ className }) => (
<svg className={className} width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'>
<svg className={className} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d='M10.9624 4.45844L10.9624 18.6345L8.63348 18.6345L8.63266 4.45926L2.38628 10.7056L0.739248 9.0586L9.79793 -8.1379e-05L18.8566 9.0586L17.2096 10.7056L10.9624 4.45844Z'
fill='currentColor'
d="M10.9624 4.45844L10.9624 18.6345L8.63348 18.6345L8.63266 4.45926L2.38628 10.7056L0.739248 9.0586L9.79793 -8.1379e-05L18.8566 9.0586L17.2096 10.7056L10.9624 4.45844Z"
fill="currentColor"
/>
</svg>
)
Expand Down
10 changes: 5 additions & 5 deletions site/src/components/common/Icon/icons/Bridges.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import { memo } from 'react'
import { SvgIconComponent } from '../SvgIconComponent'

const Bridges: SvgIconComponent = ({ className }) => (
<svg className={className} width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'>
<svg className={className} width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule='evenodd'
clipRule='evenodd'
d='M78.7042 18.1626H1.29883V62.0954H11.9942C12.0182 46.6472 24.5488 34.1313 40.0027 34.1313C55.4565 34.1313 67.9872 46.6472 68.0112 62.0954H78.7042V18.1626Z'
fill='currentColor'
fillRule="evenodd"
clipRule="evenodd"
d="M78.7042 18.1626H1.29883V62.0954H11.9942C12.0182 46.6472 24.5488 34.1313 40.0027 34.1313C55.4565 34.1313 67.9872 46.6472 68.0112 62.0954H78.7042V18.1626Z"
fill="currentColor"
/>
</svg>
)
Expand Down
10 changes: 5 additions & 5 deletions site/src/components/common/Icon/icons/Cross.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import { memo } from 'react'
import { SvgIconComponent } from '../SvgIconComponent'

const Cross: SvgIconComponent = ({ className }) => (
<svg className={className} width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'>
<svg className={className} width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule='evenodd'
clipRule='evenodd'
d='M11.6725 1.77491L10.0225 0.124989L5.89754 4.24999L1.77149 0.123931L0.121569 1.77385L4.24763 5.8999L0.123047 10.0245L1.77296 11.6744L5.89754 7.54982L10.0211 11.6733L11.671 10.0234L7.54746 5.8999L11.6725 1.77491Z'
fill='black'
fillRule="evenodd"
clipRule="evenodd"
d="M11.6725 1.77491L10.0225 0.124989L5.89754 4.24999L1.77149 0.123931L0.121569 1.77385L4.24763 5.8999L0.123047 10.0245L1.77296 11.6744L5.89754 7.54982L10.0211 11.6733L11.671 10.0234L7.54746 5.8999L11.6725 1.77491Z"
fill="black"
/>
</svg>
)
Expand Down
6 changes: 3 additions & 3 deletions site/src/components/common/Icon/icons/DevPortal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { memo } from 'react'
import { SvgIconComponent } from '../SvgIconComponent'

const DevPortal: SvgIconComponent = ({ className }) => (
<svg className={className} width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'>
<svg className={className} width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d='M35.6319 15.8954C35.6319 15.8954 31.1366 13.411 30.7063 13.1505C30.2759 12.89 30.3943 12.582 30.3943 12.582C30.3943 12.582 30.5622 11.3753 30.2739 10.2864C29.9857 9.19758 29.0728 8.6779 29.0728 8.6779C29.0728 8.6779 21.1915 4.3466 19.7517 3.54233C18.3119 2.73807 16.3624 3.06629 16.3624 3.06629C16.3624 3.06629 5.67098 5.53053 4.3733 5.95643C3.07563 6.38233 3.05183 7.49462 3.00357 7.75511C2.95531 8.0156 3.41211 18.9979 3.41211 18.9979C3.51854 21.6028 4.46982 22.7848 4.46982 22.7848C4.46982 22.7848 11.2927 29.8616 12.398 30.9746C13.5033 32.0875 15.0654 31.6134 15.2571 31.519C15.4488 31.4246 15.8098 31.6134 15.8098 31.6134C15.8098 31.6134 18.6206 34.501 20.1827 36.1101C21.7448 37.7193 23.6666 36.6546 23.6666 36.6546C23.6666 36.6546 32.1719 32.7016 34.2622 31.6844C36.3525 30.6672 36.2083 28.2284 36.2083 28.2284C36.2083 28.2284 36.761 21.3657 36.9791 18.9979C37.1973 16.63 35.6319 15.8954 35.6319 15.8954ZM30.35 15.691C30.6018 15.8525 31.8797 16.6294 31.8797 16.6294L30.0254 17.2884L30.1497 15.7255C30.1497 15.7255 30.0974 15.5308 30.35 15.6923V15.691ZM11.4851 26.3431L6.87214 21.6913C6.87214 21.6913 6.10332 20.8675 6.04118 19.4003C5.97904 17.9331 5.73709 11.9998 5.73709 11.9998C5.73709 11.9998 5.56058 11.5107 5.8812 11.779C6.20182 12.0473 10.5087 16.1657 10.5087 16.1657C10.8028 16.4187 11.0412 16.7283 11.2092 17.0755C11.3773 17.4227 11.4714 17.8001 11.4857 18.1845C11.5333 19.4948 11.4851 26.3431 11.4851 26.3431ZM15.7457 12.8347C15.7457 12.8347 14.6879 13.1661 13.8557 12.5032C13.0234 11.8403 7.80094 7.67631 7.80094 7.67631L16.098 5.40419C16.098 5.40419 17.4598 4.99392 18.6927 5.70375C19.9256 6.41359 24.9728 9.44374 24.9728 9.44374L15.7457 12.8347ZM19.8099 32.4717C19.8099 32.4717 19.8059 32.6853 19.566 32.4444C19.326 32.2034 17.5828 30.4256 17.5828 30.4256C17.5828 30.4256 17.442 30.3605 17.6026 30.2797C17.7632 30.199 19.7253 29.3107 19.7253 29.3107C19.7253 29.3107 19.8489 29.2319 19.8489 29.4097C19.8489 29.5875 19.8099 32.473 19.8099 32.473V32.4717ZM16.5627 27.8129C16.5627 27.8129 16.1 28.0812 16.1 27.5921V18.5003C16.1 18.5003 16.0041 17.6166 17.7817 16.9537C19.5594 16.2907 27.3745 13.3557 27.3745 13.3557C27.3745 13.3557 27.7434 13.0561 27.7434 13.6246C27.7434 14.1931 27.1339 21.9238 27.1339 21.9238C27.1339 21.9238 27.2145 23.0759 26.1092 23.6281C25.0039 24.1803 16.5627 27.8129 16.5627 27.8129ZM34.4387 20.7256C34.358 21.5937 33.8774 28.0786 33.8774 28.0786C33.8774 28.0786 34.1339 29.0886 32.4039 29.8616C30.6739 30.6346 24.2351 33.3958 24.2351 33.3958C24.2351 33.3958 23.8351 33.7162 23.8384 33.1086C23.8417 32.501 23.8186 27.6683 23.8186 27.6683L27.3586 26.0272C27.3586 26.0272 28.7522 25.2073 29.1528 24.3392C29.5534 23.4711 29.6327 22.3035 29.6327 22.1902C29.6327 22.0769 29.4727 21.9688 30.0816 21.748C30.6904 21.5272 34.0539 20.2652 34.0539 20.2652C34.0539 20.2652 34.5187 19.8575 34.4387 20.7256Z'
fill='#212121'
d="M35.6319 15.8954C35.6319 15.8954 31.1366 13.411 30.7063 13.1505C30.2759 12.89 30.3943 12.582 30.3943 12.582C30.3943 12.582 30.5622 11.3753 30.2739 10.2864C29.9857 9.19758 29.0728 8.6779 29.0728 8.6779C29.0728 8.6779 21.1915 4.3466 19.7517 3.54233C18.3119 2.73807 16.3624 3.06629 16.3624 3.06629C16.3624 3.06629 5.67098 5.53053 4.3733 5.95643C3.07563 6.38233 3.05183 7.49462 3.00357 7.75511C2.95531 8.0156 3.41211 18.9979 3.41211 18.9979C3.51854 21.6028 4.46982 22.7848 4.46982 22.7848C4.46982 22.7848 11.2927 29.8616 12.398 30.9746C13.5033 32.0875 15.0654 31.6134 15.2571 31.519C15.4488 31.4246 15.8098 31.6134 15.8098 31.6134C15.8098 31.6134 18.6206 34.501 20.1827 36.1101C21.7448 37.7193 23.6666 36.6546 23.6666 36.6546C23.6666 36.6546 32.1719 32.7016 34.2622 31.6844C36.3525 30.6672 36.2083 28.2284 36.2083 28.2284C36.2083 28.2284 36.761 21.3657 36.9791 18.9979C37.1973 16.63 35.6319 15.8954 35.6319 15.8954ZM30.35 15.691C30.6018 15.8525 31.8797 16.6294 31.8797 16.6294L30.0254 17.2884L30.1497 15.7255C30.1497 15.7255 30.0974 15.5308 30.35 15.6923V15.691ZM11.4851 26.3431L6.87214 21.6913C6.87214 21.6913 6.10332 20.8675 6.04118 19.4003C5.97904 17.9331 5.73709 11.9998 5.73709 11.9998C5.73709 11.9998 5.56058 11.5107 5.8812 11.779C6.20182 12.0473 10.5087 16.1657 10.5087 16.1657C10.8028 16.4187 11.0412 16.7283 11.2092 17.0755C11.3773 17.4227 11.4714 17.8001 11.4857 18.1845C11.5333 19.4948 11.4851 26.3431 11.4851 26.3431ZM15.7457 12.8347C15.7457 12.8347 14.6879 13.1661 13.8557 12.5032C13.0234 11.8403 7.80094 7.67631 7.80094 7.67631L16.098 5.40419C16.098 5.40419 17.4598 4.99392 18.6927 5.70375C19.9256 6.41359 24.9728 9.44374 24.9728 9.44374L15.7457 12.8347ZM19.8099 32.4717C19.8099 32.4717 19.8059 32.6853 19.566 32.4444C19.326 32.2034 17.5828 30.4256 17.5828 30.4256C17.5828 30.4256 17.442 30.3605 17.6026 30.2797C17.7632 30.199 19.7253 29.3107 19.7253 29.3107C19.7253 29.3107 19.8489 29.2319 19.8489 29.4097C19.8489 29.5875 19.8099 32.473 19.8099 32.473V32.4717ZM16.5627 27.8129C16.5627 27.8129 16.1 28.0812 16.1 27.5921V18.5003C16.1 18.5003 16.0041 17.6166 17.7817 16.9537C19.5594 16.2907 27.3745 13.3557 27.3745 13.3557C27.3745 13.3557 27.7434 13.0561 27.7434 13.6246C27.7434 14.1931 27.1339 21.9238 27.1339 21.9238C27.1339 21.9238 27.2145 23.0759 26.1092 23.6281C25.0039 24.1803 16.5627 27.8129 16.5627 27.8129ZM34.4387 20.7256C34.358 21.5937 33.8774 28.0786 33.8774 28.0786C33.8774 28.0786 34.1339 29.0886 32.4039 29.8616C30.6739 30.6346 24.2351 33.3958 24.2351 33.3958C24.2351 33.3958 23.8351 33.7162 23.8384 33.1086C23.8417 32.501 23.8186 27.6683 23.8186 27.6683L27.3586 26.0272C27.3586 26.0272 28.7522 25.2073 29.1528 24.3392C29.5534 23.4711 29.6327 22.3035 29.6327 22.1902C29.6327 22.0769 29.4727 21.9688 30.0816 21.748C30.6904 21.5272 34.0539 20.2652 34.0539 20.2652C34.0539 20.2652 34.5187 19.8575 34.4387 20.7256Z"
fill="#212121"
/>
</svg>
)
Expand Down
4 changes: 2 additions & 2 deletions site/src/components/common/Icon/icons/Dh.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { SvgIconComponent } from '../SvgIconComponent'

// TODO: need logo
const Dh: SvgIconComponent = ({ className }) => (
<svg className={className} width='34' height='34' viewBox='0 0 34 34' fill='none' xmlns='http://www.w3.org/2000/svg'>
<g clip-path='url(#clip0_827_14171)' />
<svg className={className} width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_827_14171)" />
</svg>
)

Expand Down
6 changes: 3 additions & 3 deletions site/src/components/common/Icon/icons/Discord.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { memo } from 'react'
import { SvgIconComponent } from '../SvgIconComponent'

const Discord: SvgIconComponent = ({ className }) => (
<svg className={className} width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'>
<svg className={className} width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d='M16.7933 18.3345C17.7933 18.3345 18.6033 19.0845 18.585 20.0011C18.585 20.9178 17.795 21.6678 16.7933 21.6678C15.81 21.6678 15 20.9178 15 20.0011C15 19.0845 15.7917 18.3345 16.7933 18.3345ZM23.2067 18.3345C24.2083 18.3345 25 19.0845 25 20.0011C25 20.9178 24.2083 21.6678 23.2067 21.6678C22.2233 21.6678 21.415 20.9178 21.415 20.0011C21.415 19.0845 22.205 18.3345 23.2067 18.3345ZM31.485 3.33447C33.4233 3.33447 35 4.94447 35 6.93947V38.3345L31.315 35.0095L29.24 33.0495L27.045 30.9661L27.955 34.2045H8.515C6.57667 34.2045 5 32.5945 5 30.5995V6.93947C5 4.94447 6.57667 3.33447 8.515 3.33447H31.4833H31.485ZM24.8683 26.1895C28.6567 26.0678 30.115 23.5295 30.115 23.5295C30.115 17.8945 27.645 13.3261 27.645 13.3261C25.1783 11.4378 22.8283 11.4895 22.8283 11.4895L22.5883 11.7695C25.5033 12.6795 26.8567 13.9928 26.8567 13.9928C25.2651 13.0961 23.5111 12.525 21.6967 12.3128C20.5457 12.1828 19.3832 12.194 18.235 12.3461C18.1317 12.3461 18.045 12.3645 17.9433 12.3811C17.3433 12.4345 15.885 12.6611 14.0517 13.4845C13.4183 13.7811 13.04 13.9928 13.04 13.9928C13.04 13.9928 14.4633 12.6095 17.5483 11.6995L17.3767 11.4895C17.3767 11.4895 15.0283 11.4378 12.56 13.3278C12.56 13.3278 10.0917 17.8945 10.0917 23.5295C10.0917 23.5295 11.5317 26.0661 15.32 26.1895C15.32 26.1895 15.9533 25.4028 16.47 24.7378C14.2917 24.0711 13.47 22.6711 13.47 22.6711C13.47 22.6711 13.64 22.7945 13.9483 22.9695C13.965 22.9861 13.9817 23.0045 14.0167 23.0211C14.0683 23.0578 14.12 23.0745 14.1717 23.1095C14.6 23.3545 15.0283 23.5461 15.4217 23.7045C16.125 23.9845 16.965 24.2645 17.9433 24.4578C19.4089 24.7451 20.9157 24.7507 22.3833 24.4745C23.2382 24.3219 24.0722 24.0696 24.8683 23.7228C25.4683 23.4945 26.1367 23.1611 26.84 22.6895C26.84 22.6895 25.9833 24.1245 23.7367 24.7728C24.2517 25.4378 24.87 26.1895 24.87 26.1895H24.8683Z'
fill='#212121'
d="M16.7933 18.3345C17.7933 18.3345 18.6033 19.0845 18.585 20.0011C18.585 20.9178 17.795 21.6678 16.7933 21.6678C15.81 21.6678 15 20.9178 15 20.0011C15 19.0845 15.7917 18.3345 16.7933 18.3345ZM23.2067 18.3345C24.2083 18.3345 25 19.0845 25 20.0011C25 20.9178 24.2083 21.6678 23.2067 21.6678C22.2233 21.6678 21.415 20.9178 21.415 20.0011C21.415 19.0845 22.205 18.3345 23.2067 18.3345ZM31.485 3.33447C33.4233 3.33447 35 4.94447 35 6.93947V38.3345L31.315 35.0095L29.24 33.0495L27.045 30.9661L27.955 34.2045H8.515C6.57667 34.2045 5 32.5945 5 30.5995V6.93947C5 4.94447 6.57667 3.33447 8.515 3.33447H31.4833H31.485ZM24.8683 26.1895C28.6567 26.0678 30.115 23.5295 30.115 23.5295C30.115 17.8945 27.645 13.3261 27.645 13.3261C25.1783 11.4378 22.8283 11.4895 22.8283 11.4895L22.5883 11.7695C25.5033 12.6795 26.8567 13.9928 26.8567 13.9928C25.2651 13.0961 23.5111 12.525 21.6967 12.3128C20.5457 12.1828 19.3832 12.194 18.235 12.3461C18.1317 12.3461 18.045 12.3645 17.9433 12.3811C17.3433 12.4345 15.885 12.6611 14.0517 13.4845C13.4183 13.7811 13.04 13.9928 13.04 13.9928C13.04 13.9928 14.4633 12.6095 17.5483 11.6995L17.3767 11.4895C17.3767 11.4895 15.0283 11.4378 12.56 13.3278C12.56 13.3278 10.0917 17.8945 10.0917 23.5295C10.0917 23.5295 11.5317 26.0661 15.32 26.1895C15.32 26.1895 15.9533 25.4028 16.47 24.7378C14.2917 24.0711 13.47 22.6711 13.47 22.6711C13.47 22.6711 13.64 22.7945 13.9483 22.9695C13.965 22.9861 13.9817 23.0045 14.0167 23.0211C14.0683 23.0578 14.12 23.0745 14.1717 23.1095C14.6 23.3545 15.0283 23.5461 15.4217 23.7045C16.125 23.9845 16.965 24.2645 17.9433 24.4578C19.4089 24.7451 20.9157 24.7507 22.3833 24.4745C23.2382 24.3219 24.0722 24.0696 24.8683 23.7228C25.4683 23.4945 26.1367 23.1611 26.84 22.6895C26.84 22.6895 25.9833 24.1245 23.7367 24.7728C24.2517 25.4378 24.87 26.1895 24.87 26.1895H24.8683Z"
fill="#212121"
/>
</svg>
)
Expand Down
10 changes: 5 additions & 5 deletions site/src/components/common/Icon/icons/Gaming.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import { memo } from 'react'
import { SvgIconComponent } from '../SvgIconComponent'

const Gaming: SvgIconComponent = ({ className }) => (
<svg className={className} width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'>
<svg className={className} width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule='evenodd'
clipRule='evenodd'
d='M77.4065 12.5098H2.5957V67.2682H77.4065V12.5098ZM57.3943 29.4771H50.4531V36.4183H57.3943V29.4771ZM22.6172 29.4773H29.5584V36.4186H36.4975V43.3598H29.5584V50.301H22.6172V43.3598H15.6738V36.4186H22.6172V29.4773ZM57.3887 43.3604H64.3299V50.3016H57.3887V43.3604Z'
fill='currentColor'
fillRule="evenodd"
clipRule="evenodd"
d="M77.4065 12.5098H2.5957V67.2682H77.4065V12.5098ZM57.3943 29.4771H50.4531V36.4183H57.3943V29.4771ZM22.6172 29.4773H29.5584V36.4186H36.4975V43.3598H29.5584V50.301H22.6172V43.3598H15.6738V36.4186H22.6172V29.4773ZM57.3887 43.3604H64.3299V50.3016H57.3887V43.3604Z"
fill="currentColor"
/>
</svg>
)
Expand Down
6 changes: 3 additions & 3 deletions site/src/components/common/Icon/icons/Github.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { memo } from 'react'
import { SvgIconComponent } from '../SvgIconComponent'

const Discord: SvgIconComponent = ({ className }) => (
<svg className={className} width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'>
<svg className={className} width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d='M20.0002 3.33447C10.7918 3.33447 3.3335 10.7928 3.3335 20.0011C3.33161 23.4999 4.43152 26.9105 6.47719 29.7489C8.52286 32.5874 11.4104 34.7096 14.7302 35.8145C15.5635 35.9595 15.8752 35.4595 15.8752 35.0211C15.8752 34.6261 15.8535 33.3145 15.8535 31.9178C11.6668 32.6895 10.5835 30.8978 10.2502 29.9595C10.0618 29.4795 9.25016 28.0011 8.54183 27.6045C7.9585 27.2928 7.12516 26.5211 8.52016 26.5011C9.8335 26.4795 10.7702 27.7095 11.0835 28.2095C12.5835 30.7295 14.9802 30.0211 15.9368 29.5845C16.0835 28.5011 16.5202 27.7728 17.0002 27.3561C13.2918 26.9395 9.41683 25.5011 9.41683 19.1261C9.41683 17.3128 10.0618 15.8145 11.1252 14.6461C10.9585 14.2295 10.3752 12.5211 11.2918 10.2295C11.2918 10.2295 12.6868 9.79281 15.8752 11.9395C17.2319 11.5629 18.6338 11.3734 20.0418 11.3761C21.4585 11.3761 22.8752 11.5628 24.2085 11.9378C27.3952 9.77114 28.7918 10.2311 28.7918 10.2311C29.7085 12.5228 29.1252 14.2311 28.9585 14.6478C30.0202 15.8145 30.6668 17.2928 30.6668 19.1261C30.6668 25.5228 26.7718 26.9395 23.0635 27.3561C23.6668 27.8761 24.1885 28.8761 24.1885 30.4395C24.1885 32.6678 24.1668 34.4595 24.1668 35.0228C24.1668 35.4595 24.4802 35.9795 25.3135 35.8128C28.6219 34.6958 31.4967 32.5695 33.5333 29.7331C35.57 26.8967 36.6659 23.493 36.6668 20.0011C36.6668 10.7928 29.2085 3.33447 20.0002 3.33447Z'
fill='#212121'
d="M20.0002 3.33447C10.7918 3.33447 3.3335 10.7928 3.3335 20.0011C3.33161 23.4999 4.43152 26.9105 6.47719 29.7489C8.52286 32.5874 11.4104 34.7096 14.7302 35.8145C15.5635 35.9595 15.8752 35.4595 15.8752 35.0211C15.8752 34.6261 15.8535 33.3145 15.8535 31.9178C11.6668 32.6895 10.5835 30.8978 10.2502 29.9595C10.0618 29.4795 9.25016 28.0011 8.54183 27.6045C7.9585 27.2928 7.12516 26.5211 8.52016 26.5011C9.8335 26.4795 10.7702 27.7095 11.0835 28.2095C12.5835 30.7295 14.9802 30.0211 15.9368 29.5845C16.0835 28.5011 16.5202 27.7728 17.0002 27.3561C13.2918 26.9395 9.41683 25.5011 9.41683 19.1261C9.41683 17.3128 10.0618 15.8145 11.1252 14.6461C10.9585 14.2295 10.3752 12.5211 11.2918 10.2295C11.2918 10.2295 12.6868 9.79281 15.8752 11.9395C17.2319 11.5629 18.6338 11.3734 20.0418 11.3761C21.4585 11.3761 22.8752 11.5628 24.2085 11.9378C27.3952 9.77114 28.7918 10.2311 28.7918 10.2311C29.7085 12.5228 29.1252 14.2311 28.9585 14.6478C30.0202 15.8145 30.6668 17.2928 30.6668 19.1261C30.6668 25.5228 26.7718 26.9395 23.0635 27.3561C23.6668 27.8761 24.1885 28.8761 24.1885 30.4395C24.1885 32.6678 24.1668 34.4595 24.1668 35.0228C24.1668 35.4595 24.4802 35.9795 25.3135 35.8128C28.6219 34.6958 31.4967 32.5695 33.5333 29.7331C35.57 26.8967 36.6659 23.493 36.6668 20.0011C36.6668 10.7928 29.2085 3.33447 20.0002 3.33447Z"
fill="#212121"
/>
</svg>
)
Expand Down
Loading

0 comments on commit df45f17

Please sign in to comment.