-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
63 additions
and
36 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
File renamed without changes.
23 changes: 23 additions & 0 deletions
23
app/src/routes/transfer-new/(components)/chain-button.svelte
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,23 @@ | ||
<script lang="ts"> | ||
import Chevron from "./chevron.svelte" | ||
import { Button } from "$lib/components/ui/button/index.ts" | ||
export let dialogOpen: boolean | ||
</script> | ||
|
||
<Button | ||
{...$$restProps} | ||
variant="outline" | ||
data-transfer-from-chain="" | ||
on:click={() => (dialogOpen = !dialogOpen)} | ||
class="flex flex-row items-center w-full" | ||
> | ||
<div class="flex items-center space-x-1.5 flex-1"> | ||
<div class="flex flex-col items-start"> | ||
<div class="font-bold text-md mr-auto w-full text-left"> | ||
<slot /> | ||
</div> | ||
</div> | ||
</div> | ||
<Chevron /> | ||
</Button> |
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,4 @@ | ||
<script lang="ts"> | ||
import ChevronDown from "virtual:icons/lucide/chevron-down" | ||
</script> | ||
<ChevronDown class="size-6 text-accent-foreground/60" /> |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.