-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'staging' into feat/logo-link
- Loading branch information
Showing
14 changed files
with
76 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { HTMLAttributes } from 'preact/compat'; | ||
|
||
const NablaIcon = (props: HTMLAttributes<SVGSVGElement>) => ( | ||
<svg | ||
width="32" | ||
height="32" | ||
fill="#32253e" | ||
fillRule="evenodd" | ||
{...props} | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 32 32" | ||
> | ||
<path d="m25.26,5.71l1.25,8.42-8.63,12.17-3.45-.79-5.19-8.95-3.75-7.09,19.77-3.75Zm-1.11.97l-17.91,3.23,8.32,13.52,2.28.28,7.32-17.03Zm-4.8,3.82l-3.84,8.93-4.56-7.42,8.4-1.51Zm-.99,1.41l-3.73,1.65,1.19,3.81,2.54-5.46Z" /> | ||
</svg> | ||
); | ||
|
||
export default NablaIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { HTMLAttributes } from 'preact/compat'; | ||
|
||
const SpacewalkIcon = (props: HTMLAttributes<SVGSVGElement>) => ( | ||
<svg width="32" height="32" {...props} viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
<path d="m16,5.03c-6.06,0-10.97,4.91-10.97,10.97s4.91,10.97,10.97,10.97,10.97-4.91,10.97-10.97-4.91-10.97-10.97-10.97Zm0,19.8c-4.87,0-8.83-3.96-8.83-8.83s3.96-8.83,8.83-8.83,8.83,3.96,8.83,8.83-3.96,8.83-8.83,8.83Z" /> | ||
<path d="m16.99,9.37c-2.31,0-4.52,1.75-5.83,4.42-1.7,3.46-1.2,7.17,1.74,8.59.68.33,1.38.48,2.06.48,2.31,0,4.51-1.76,5.82-4.43,1.7-3.46,1.39-7.08-1.74-8.59-.68-.33-1.36-.48-2.04-.48h0Zm0,1.76c.42,0,.83.1,1.23.3,1.07.52,1.56,1.42,1.67,2.45l-4.59-2.23c.55-.33,1.12-.51,1.68-.51h0Zm-4.87,5.59c.08-.5.22-1.01.42-1.53l6.23,3.03c-.28.48-.6.91-.94,1.28l-5.71-2.78Zm1.04-2.81c.28-.48.6-.91.94-1.28l5.73,2.79c-.09.51-.25,1.03-.44,1.52l-6.23-3.03Zm.54,6.8c-.87-.42-1.4-1.17-1.59-2.22-.01-.07-.02-.14-.03-.2l4.54,2.21c-.55.33-1.12.51-1.67.51-.42,0-.84-.1-1.25-.3Z" />{' '} | ||
</svg> | ||
); | ||
|
||
export default SpacewalkIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import SwapPage from './swap'; | ||
|
||
const NablaPage = SwapPage; | ||
|
||
export default NablaPage; |
File renamed without changes.
File renamed without changes.