Compare commits
No commits in common. "c0feb9bd5e278e6f29df7dd09e7880669271f6b8" and "af5e5c2c2c4ccd0efe87288438b1ae27fb6c7509" have entirely different histories.
c0feb9bd5e
...
af5e5c2c2c
4 changed files with 7 additions and 8 deletions
|
@ -1,6 +1,5 @@
|
|||
<script lang="ts">
|
||||
import Check from 'lucide-svelte/icons/check';
|
||||
import Copy from 'lucide-svelte/icons/copy';
|
||||
import { Check, Copy } from 'lucide-svelte';
|
||||
|
||||
let element: HTMLButtonElement;
|
||||
let copying = false;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import ArrowUpRight from 'lucide-svelte/icons/arrow-up-right';
|
||||
import { ArrowUpRight } from 'lucide-svelte';
|
||||
import type { HTMLAnchorAttributes } from 'svelte/elements';
|
||||
|
||||
import { cn } from '$lib/utils';
|
||||
|
|
|
@ -8,10 +8,10 @@
|
|||
import Minus from 'lucide-svelte/icons/minus';
|
||||
import Plus from 'lucide-svelte/icons/plus';
|
||||
import Users from 'lucide-svelte/icons/users';
|
||||
import Loader from 'lucide-svelte/icons/loader-circle';
|
||||
|
||||
import Button from '$lib/components/ui/button/button.svelte';
|
||||
import Input from '$lib/components/ui/input/input.svelte';
|
||||
import { Loader2 } from 'lucide-svelte';
|
||||
import { toast } from 'svelte-sonner';
|
||||
|
||||
export let data: PageData;
|
||||
|
@ -99,7 +99,7 @@
|
|||
<input type="hidden" name="name" value={group.name} />
|
||||
<Button disabled={submitting} variant="destructive" type="submit">
|
||||
{#if submitting}
|
||||
<Loader class="mr-2 h-4 w-4 animate-spin" />
|
||||
<Loader2 class="mr-2 h-4 w-4 animate-spin" />
|
||||
{:else}
|
||||
<Minus class="mr-2 h-4 w-4" />
|
||||
{/if}
|
||||
|
@ -128,7 +128,7 @@
|
|||
<input type="hidden" name="name" value={group.name} />
|
||||
<Button disabled={submitting} variant="outline" type="submit">
|
||||
{#if submitting}
|
||||
<Loader class="mr-2 h-4 w-4 animate-spin" />
|
||||
<Loader2 class="mr-2 h-4 w-4 animate-spin" />
|
||||
{:else}
|
||||
<Plus class="mr-2 h-4 w-4" />
|
||||
{/if}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
import { goto } from '$app/navigation';
|
||||
import { page } from '$app/stores';
|
||||
|
||||
import Loader from 'lucide-svelte/icons/loader-circle';
|
||||
import { Loader2 } from 'lucide-svelte';
|
||||
import { toast } from 'svelte-sonner';
|
||||
|
||||
import CopyCodeInjector from '$lib/components/copy-code-injector.svelte';
|
||||
|
@ -110,7 +110,7 @@
|
|||
</div>
|
||||
<Button type="submit" class="w-full sm:w-44" disabled={submitting}>
|
||||
{#if submitting}
|
||||
<Loader class="mr-2 h-4 w-4 animate-spin" />
|
||||
<Loader2 class="mr-2 h-4 w-4 animate-spin" />
|
||||
{/if}
|
||||
Valider
|
||||
</Button>
|
||||
|
|
Loading…
Add table
Reference in a new issue