-
Notifications
You must be signed in to change notification settings - Fork 0
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 #40 from tuzkituan/dev/theme
New UI Version 1.2.0
- Loading branch information
Showing
72 changed files
with
3,071 additions
and
2,745 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" | ||
rel="stylesheet" | ||
/> | ||
|
||
<style> | ||
body { | ||
font-family: "Plus Jakarta Sans", sans-serif; | ||
} | ||
</style> |
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,12 @@ | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" | ||
rel="stylesheet" | ||
/> | ||
|
||
<style> | ||
body { | ||
font-family: "Plus Jakarta Sans", sans-serif; | ||
} | ||
</style> |
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,40 @@ | ||
const LoadingIcon = ({ | ||
color = "#8281B8", | ||
className = "", | ||
}: { | ||
size?: number; | ||
color?: string; | ||
className?: string; | ||
}) => { | ||
return ( | ||
<svg | ||
className={className} | ||
viewBox="0 0 48 48" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<g id="Size=Large"> | ||
<path | ||
id="Ellipse 15" | ||
d="M45 24C46.6569 24 48.0194 22.6516 47.8128 21.0077C47.1755 15.9357 44.9301 11.1704 41.3657 7.43397C37.1072 2.96993 31.2932 0.317265 25.1306 0.026643C18.9679 -0.263979 12.9301 1.82977 8.2704 5.87324C3.61071 9.91671 0.687111 15.5993 0.106513 21.7414C-0.474085 27.8835 1.33291 34.0133 5.15239 38.8583C8.97188 43.7032 14.5105 46.8913 20.6184 47.7606C26.7263 48.6299 32.9344 47.1136 37.9539 43.5266C42.1554 40.5242 45.254 36.2641 46.8303 31.4014C47.3412 29.8253 46.2555 28.2455 44.628 27.935C43.0005 27.6245 41.4528 28.706 40.8767 30.2595C39.6335 33.6112 37.4108 36.5402 34.4654 38.645C30.7008 41.3352 26.0447 42.4724 21.4638 41.8204C16.8828 41.1685 12.7289 38.7774 9.8643 35.1437C6.99968 31.51 5.64444 26.9126 6.07988 22.3061C6.51533 17.6995 8.70803 13.4375 12.2028 10.4049C15.6976 7.37232 20.226 5.80202 24.8479 6.01998C29.4699 6.23795 33.8304 8.22745 37.0243 11.5755C39.523 14.1949 41.1575 17.4884 41.7506 21.0138C42.0255 22.6477 43.3431 24 45 24Z" | ||
fill="url(#paint0_linear_550_76)" | ||
/> | ||
</g> | ||
<defs> | ||
<linearGradient | ||
id="paint0_linear_550_76" | ||
x1="48" | ||
y1="29.75" | ||
x2="19.25" | ||
y2="6.86385e-07" | ||
gradientUnits="userSpaceOnUse" | ||
> | ||
<stop stopColor="white" /> | ||
<stop offset="1" stopColor={color} /> | ||
</linearGradient> | ||
</defs> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default LoadingIcon; |
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.