-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from G7DAO/test-dark-merge
Test dark merge
- Loading branch information
Showing
34 changed files
with
398 additions
and
197 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,27 @@ | ||
import React from 'react' | ||
|
||
const IconDark: React.FC<React.SVGProps<SVGSVGElement>> = (props) => ( | ||
<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none' {...props}> | ||
<g clipPath='url(#clip0_15158_3715)'> | ||
<path | ||
d='M15.0001 1.66666L15.5149 2.69631C15.7362 3.13879 15.8468 3.36003 15.9946 3.55175C16.1257 3.72187 16.2782 3.87439 16.4483 4.00552C16.64 4.1533 16.8613 4.26392 17.3038 4.48516L18.3334 4.99999L17.3038 5.51482C16.8613 5.73606 16.64 5.84668 16.4483 5.99446C16.2782 6.12559 16.1257 6.27811 15.9946 6.44823C15.8468 6.63995 15.7361 6.86119 15.5149 7.30367L15.0001 8.33332L14.4853 7.30367C14.264 6.86119 14.1534 6.63995 14.0056 6.44823C13.8745 6.27811 13.722 6.12559 13.5518 5.99446C13.3601 5.84668 13.1389 5.73606 12.6964 5.51482L11.6667 4.99999L12.6964 4.48516C13.1389 4.26392 13.3601 4.1533 13.5518 4.00552C13.722 3.87439 13.8745 3.72187 14.0056 3.55175C14.1534 3.36003 14.264 3.13879 14.4853 2.69631L15.0001 1.66666Z' | ||
strokeWidth='1.67' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
/> | ||
<path | ||
d='M17.5001 11.1577C16.4076 13.0742 14.3455 14.3662 11.9817 14.3662C8.47599 14.3662 5.63404 11.5243 5.63404 8.0186C5.63404 5.65461 6.92632 3.59244 8.843 2.49999C4.81658 2.88176 1.66675 6.27243 1.66675 10.3988C1.66675 14.7809 5.21918 18.3333 9.60133 18.3333C13.7275 18.3333 17.118 15.1838 17.5001 11.1577Z' | ||
strokeWidth='1.67' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id='clip0_15158_3715'> | ||
<rect width='20' height='20' fill='white' /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
) | ||
|
||
export default IconDark |
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,14 @@ | ||
import React from 'react' | ||
|
||
const IconLight: React.FC<React.SVGProps<SVGSVGElement>> = (props) => ( | ||
<svg xmlns='http://www.w3.org/2000/svg' width='21' height='20' viewBox='0 0 21 20' fill='none' {...props}> | ||
<path | ||
d='M10.5001 1.66666V3.33332M10.5001 16.6667V18.3333M3.83341 9.99999H2.16675M5.76184 5.26175L4.58333 4.08324M15.2383 5.26175L16.4168 4.08324M5.76184 14.7417L4.58333 15.9202M15.2383 14.7417L16.4168 15.9202M18.8334 9.99999H17.1667M14.6667 9.99999C14.6667 12.3012 12.8013 14.1667 10.5001 14.1667C8.1989 14.1667 6.33341 12.3012 6.33341 9.99999C6.33341 7.6988 8.1989 5.83332 10.5001 5.83332C12.8013 5.83332 14.6667 7.6988 14.6667 9.99999Z' | ||
strokeWidth='1.67' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
/> | ||
</svg> | ||
) | ||
|
||
export default IconLight |
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
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
Oops, something went wrong.