-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added toasts back - Fixed spinner on btn - "Connect wallet" / "Connected" btn to work with `$cosmosStore` as well. (We could have something inline with "Connected 1/2" to give more info on connect btn.)
- Loading branch information
Showing
3 changed files
with
34 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<script lang="ts"> | ||
export let className: string | ||
//Add this through our icon package instead | ||
</script> | ||
|
||
<svg class={className} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> | ||
<g stroke="currentColor"> | ||
<circle cx="12" cy="12" fill="none" r="9.5" stroke-linecap="round" stroke-width="3"> | ||
<animate attributeName="stroke-dasharray" calcMode="spline" dur="1.5s" | ||
keySplines="0.42,0,0.58,1;0.42,0,0.58,1;0.42,0,0.58,1" keyTimes="0;0.475;0.95;1" repeatCount="indefinite" | ||
values="0 150;42 150;42 150;42 150"/> | ||
<animate attributeName="stroke-dashoffset" calcMode="spline" dur="1.5s" | ||
keySplines="0.42,0,0.58,1;0.42,0,0.58,1;0.42,0,0.58,1" keyTimes="0;0.475;0.95;1" repeatCount="indefinite" | ||
values="0;-16;-59;-59"/> | ||
</circle> | ||
<animateTransform attributeName="transform" dur="2s" repeatCount="indefinite" type="rotate" | ||
values="0 12 12;360 12 12"/> | ||
</g> | ||
</svg> |
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