@@ -9,11 +9,13 @@
|
||||
|
||||
<article class="card u-grid u-cross-center u-width-full-line common-section">
|
||||
<div class="u-flex u-flex-vertical u-cross-center u-gap-24">
|
||||
{#if $app.themeInUse === 'dark'}
|
||||
<img src={Dark} alt="create" aria-hidden="true" />
|
||||
{:else}
|
||||
<img src={Light} alt="create" aria-hidden="true" />
|
||||
{/if}
|
||||
<button type="button" on:click|preventDefault>
|
||||
{#if $app.themeInUse === 'dark'}
|
||||
<img src={Dark} alt="create" aria-hidden="true" />
|
||||
{:else}
|
||||
<img src={Light} alt="create" aria-hidden="true" />
|
||||
{/if}
|
||||
</button>
|
||||
<slot />
|
||||
</div>
|
||||
</article>
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { Empty, Pagination, Trim } from '$lib/components';
|
||||
import { Button } from '$lib/elements/forms';
|
||||
import { EmptySearch, Pagination, Trim } from '$lib/components';
|
||||
import {
|
||||
Table,
|
||||
TableBody,
|
||||
@@ -77,25 +76,20 @@
|
||||
{/each}
|
||||
</TableBody>
|
||||
</Table>
|
||||
<div class="u-flex u-margin-block-start-32 u-main-space-between">
|
||||
<p class="text">Total results: {logs.total}</p>
|
||||
<Pagination limit={PAGE_LIMIT} {path} {offset} sum={logs.total} />
|
||||
</div>
|
||||
{:else}
|
||||
<Empty>
|
||||
<EmptySearch>
|
||||
<div class="u-flex u-flex-vertical u-cross-center">
|
||||
<div class="common-section">
|
||||
<p>No logs available</p>
|
||||
</div>
|
||||
<div class="common-section">
|
||||
<Button
|
||||
external
|
||||
secondary
|
||||
href="https://appwrite.io/docs/server/authentication?sdk=nodejs-default#usersGetLogs">
|
||||
Documentation
|
||||
</Button>
|
||||
<div class="u-text-center">
|
||||
<p class="text u-line-height-1-5">
|
||||
You have no activity. Once your users start interacting with your app you'll
|
||||
see their activity here.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</Empty>
|
||||
</EmptySearch>
|
||||
{/if}
|
||||
<div class="u-flex u-margin-block-start-32 u-main-space-between">
|
||||
<p class="text">Total results: {logs.total}</p>
|
||||
<Pagination limit={PAGE_LIMIT} {path} {offset} sum={logs.total} />
|
||||
</div>
|
||||
</Container>
|
||||
|
||||
@@ -27,7 +27,6 @@
|
||||
import { Dependencies } from '$lib/constants';
|
||||
|
||||
$: if (prefs) {
|
||||
console.log(prefs);
|
||||
if (JSON.stringify(prefs) !== JSON.stringify(Object.entries($user.prefs))) {
|
||||
if (!!prefs[prefs.length - 1][0] && !!prefs[prefs.length - 1][1]) {
|
||||
arePrefsDisabled = false;
|
||||
|
||||
@@ -140,6 +140,7 @@
|
||||
|
||||
<Button
|
||||
text
|
||||
noMargin
|
||||
disabled={$work[attribute.key][$work[attribute.key].length - 1] === null}
|
||||
on:click={() => addArrayItem(attribute.key)}>
|
||||
<span class="icon-plus" aria-hidden="true" />
|
||||
|
||||
@@ -195,6 +195,7 @@
|
||||
{/if}
|
||||
<Button
|
||||
text
|
||||
noMargin
|
||||
on:click={() => {
|
||||
newAttr = true;
|
||||
if (selectedAttribute && selectedOrder) {
|
||||
@@ -203,7 +204,7 @@
|
||||
}
|
||||
}}>
|
||||
<span class="icon-plus" aria-hidden="true" />
|
||||
<span class="text"> Add attribute </span>
|
||||
<span class="text">Add attribute</span>
|
||||
</Button>
|
||||
</FormList>
|
||||
<svelte:fragment slot="footer">
|
||||
|
||||
@@ -58,6 +58,7 @@
|
||||
{/each}
|
||||
<Button
|
||||
text
|
||||
noMargin
|
||||
disabled={$createDocument.document[attribute.key][
|
||||
$createDocument.document[attribute.key].length - 1
|
||||
] === null}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import { Container } from '$lib/layout';
|
||||
import { Pill } from '$lib/elements';
|
||||
import { Copy, Empty, Status, Heading, Pagination } from '$lib/components';
|
||||
import { Copy, Status, Heading, Pagination, EmptySearch } from '$lib/components';
|
||||
import {
|
||||
Table,
|
||||
TableHeader,
|
||||
@@ -21,8 +21,11 @@
|
||||
import { onDestroy, onMount } from 'svelte';
|
||||
import { sdkForConsole } from '$lib/stores/sdk';
|
||||
import { invalidate } from '$app/navigation';
|
||||
import { Button } from '$lib/elements/forms';
|
||||
import CreateDeployment from '../../create.svelte';
|
||||
|
||||
export let data: PageData;
|
||||
let showCreate = false;
|
||||
|
||||
let unsubscribe: { (): void };
|
||||
|
||||
@@ -90,17 +93,30 @@
|
||||
{/each}
|
||||
</TableBody>
|
||||
</Table>
|
||||
<div class="u-flex u-margin-block-start-32 u-main-space-between">
|
||||
<p class="text">Total results: {data.executions.total}</p>
|
||||
<Pagination
|
||||
limit={PAGE_LIMIT}
|
||||
path={`/console/project-${$page.params.project}/functions/function-${$page.params.function}/executions`}
|
||||
offset={data.offset}
|
||||
sum={data.executions.total} />
|
||||
</div>
|
||||
{:else}
|
||||
<Empty single>
|
||||
<p class="text u-line-height-1-5">Execute your function to view execution logs</p>
|
||||
</Empty>
|
||||
<EmptySearch>
|
||||
<div class="u-text-center">
|
||||
<p class="text u-line-height-1-5">
|
||||
You have no execution logs. Create and activate a deployment to see it here.
|
||||
</p>
|
||||
<p class="text u-line-height-1-5">Need a hand? Check out our documentation</p>
|
||||
</div>
|
||||
<div class="u-flex u-gap-16">
|
||||
<Button text external href="https://appwrite.io/docs/functions#execute">
|
||||
Documentation
|
||||
</Button>
|
||||
<Button secondary on:click={() => (showCreate = true)}>Create deployment</Button>
|
||||
</div>
|
||||
</EmptySearch>
|
||||
{/if}
|
||||
<div class="u-flex u-margin-block-start-32 u-main-space-between">
|
||||
<p class="text">Total results: {data.executions.total}</p>
|
||||
<Pagination
|
||||
limit={PAGE_LIMIT}
|
||||
path={`/console/project-${$page.params.project}/functions/function-${$page.params.function}/executions`}
|
||||
offset={data.offset}
|
||||
sum={data.executions.total} />
|
||||
</div>
|
||||
</Container>
|
||||
|
||||
<CreateDeployment bind:showCreate />
|
||||
|
||||
@@ -65,8 +65,13 @@
|
||||
</div>
|
||||
</div>
|
||||
<Alert type="warning">
|
||||
Tip: Avoid using wildcard hostnames in production to keep your project secure. Check out
|
||||
our documentation for more info.
|
||||
Using wildcard hostnames in production can become insecure. You can read about
|
||||
<a
|
||||
href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="link">
|
||||
Cross-Origin Resource Sharing (CORS)</a> for more information.
|
||||
</Alert>
|
||||
</FormList>
|
||||
</WizardStep>
|
||||
|
||||
@@ -11,10 +11,13 @@
|
||||
import { invalidate } from '$app/navigation';
|
||||
import { Dependencies } from '$lib/constants';
|
||||
import Delete from './deleteProject.svelte';
|
||||
import { base } from '$app/paths';
|
||||
import { page } from '$app/stores';
|
||||
|
||||
let name: string = null;
|
||||
let showDelete = false;
|
||||
const endpoint = sdkForConsole.client.config.endpoint;
|
||||
const projectId = $page.params.project;
|
||||
|
||||
onMount(async () => {
|
||||
name ??= $project.name;
|
||||
@@ -100,6 +103,11 @@
|
||||
<CopyInput label="API Endpoint" showLabel={true} value={endpoint} />
|
||||
</FormList>
|
||||
</svelte:fragment>
|
||||
<svelte:fragment slot="actions">
|
||||
<Button secondary href={`${base}/console/project-${projectId}/overview/keys`}>
|
||||
View API Keys
|
||||
</Button>
|
||||
</svelte:fragment>
|
||||
</CardGrid>
|
||||
|
||||
<CardGrid>
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
{/each}
|
||||
</TableList>
|
||||
<div class="u-flex u-margin-block-start-16">
|
||||
<Button text on:click={() => (showCreate = !showCreate)}>
|
||||
<Button text noMargin on:click={() => (showCreate = !showCreate)}>
|
||||
<span class="icon-plus" aria-hidden="true" />
|
||||
<span class="u-text">Add event</span>
|
||||
</Button>
|
||||
|
||||
|
After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2.10736 19L14.357 11.2023H20.7118C20.9079 11.2023 21.0828 11.3623 21.0828 11.5821C21.0828 11.7612 21.0059 11.8424 20.9079 11.9021L14.8892 15.5919C14.4971 15.8332 14.3617 16.3132 14.3617 16.6715L14.3547 18.9976H22V5.48004C22 5.21972 21.804 5 21.5122 5H14.2193L2 12.7619V18.9976H2.10736V19Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 418 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19.6653 21H4.33474C3.98097 20.9993 3.64191 20.8584 3.39176 20.6082C3.1416 20.3581 3.00074 20.019 3 19.6653V4.33474C3.00074 3.98098 3.1416 3.64191 3.39176 3.39176C3.64191 3.14161 3.98097 3.00074 4.33474 3H19.6653C20.0185 3.00074 20.3572 3.14122 20.6073 3.39076C20.8573 3.64031 20.9985 3.97865 21 4.33193V19.6624C20.9982 20.0159 20.8569 20.3543 20.607 20.6042C20.3571 20.8541 20.0187 20.9953 19.6653 20.9972V21Z" fill="#2A62AA"/>
|
||||
<path d="M17.5898 4.78453V19.1128H14.5561V18.0157C13.7566 18.7921 12.6807 19.2152 11.4225 19.2152C8.67084 19.2152 6.40698 16.8692 6.40698 13.9269C6.40698 10.9845 8.82949 8.60591 11.4225 8.60591C12.6807 8.60591 13.7566 9.0526 14.5561 9.8436V5.39269L17.5898 4.78453ZM12.1102 16.4318C12.7883 16.4312 13.4385 16.1615 13.918 15.682C14.3975 15.2025 14.6671 14.5524 14.6677 13.8743C14.6672 13.1961 14.3976 12.5459 13.9181 12.0663C13.4386 11.5867 12.7884 11.3171 12.1102 11.3165C11.4321 11.3171 10.7818 11.5867 10.3023 12.0663C9.82282 12.5459 9.55321 13.1961 9.55269 13.8743C9.55329 14.5524 9.82293 15.2025 10.3024 15.682C10.7819 16.1615 11.4321 16.4312 12.1102 16.4318V16.4318Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.8465 21C9.58866 21 7.52422 20.1952 5.92808 18.8639L2 19.3873L3.51754 15.7339C2.98882 14.5959 2.6922 13.3325 2.6922 12C2.6922 7.02973 6.79073 3 11.8465 3C16.9019 3 21 7.02973 21 12C21 16.9712 16.902 21 11.8465 21ZM16.8449 11.9743V11.9492C16.8449 9.35213 14.9673 7.50027 11.7299 7.50027H8.23337V16.5003H11.6781C14.9406 16.5004 16.8449 14.5712 16.8449 11.9743ZM11.7685 14.2891H10.7457V9.71213H11.7685C13.2706 9.71213 14.2676 10.5475 14.2676 11.9881V12.0132C14.2676 13.466 13.2706 14.2891 11.7685 14.2891Z" fill="#2E9FFF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 636 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19.4286 15.6964C19.3583 16.1284 18.8762 20.1161 18.8058 21C14.0697 20.8273 9.97075 20.8095 4 21V19.9756C5.82644 19.6159 6.43594 19.6532 6.45092 18.5592C6.52296 15.6533 6.5925 8.74984 6.45092 5.62163C6.40956 4.47817 5.96356 4.54629 4 4.17528V3.15071C6.96862 3.24546 14.283 3.49423 18.5848 3C18.4442 4.53684 18.2735 8.08257 18.2735 8.08257H17.3394C16.8953 6.3616 16.5857 4.44643 15.1396 4.44643H9.63513C9.2233 4.44643 9.20317 4.58708 9.20317 4.83818V11.4175C11.5335 11.4375 12.759 11.317 12.759 11.317C13.9551 11.2787 13.8662 10.9754 14.3963 8.69531H15.4308C15.2538 12.7675 15.2737 11.1795 15.3605 15.1339H14.326C13.9581 13.5233 13.9617 12.6813 12.7388 12.663C12.7388 12.663 11.875 12.5826 9.20313 12.5826V18.1674C9.20313 19.2121 9.77574 19.7042 10.981 19.7042H14.567C17.1238 19.7042 17.2415 18.7 18.5347 15.6964H19.4286V15.6964Z" fill="#F97431"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 959 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M17.7358 5.3661C14.61 2.22373 9.5308 2.21103 6.38892 5.32991L6.35205 5.36679C3.21517 8.52223 3.21617 13.6553 6.35392 16.8096L11.2005 21.6812C11.301 21.7825 11.4203 21.8628 11.5518 21.9175C11.6832 21.9722 11.8241 22.0002 11.9664 22C12.2434 22 12.5213 21.8941 12.7327 21.6812C13.1553 21.2558 13.1553 20.566 12.7327 20.1408L7.88542 15.2687C5.59942 12.9709 5.59211 9.23497 7.86417 6.92742L7.8863 6.90562C10.1799 4.60115 13.9112 4.60184 16.2034 6.90637C18.0857 8.79883 18.3558 12.0374 16.8306 14.4405C16.5089 14.9472 16.6571 15.6207 17.1611 15.9442C17.6662 16.2686 18.3352 16.119 18.6567 15.6125C20.7497 12.3153 20.3623 8.00648 17.7358 5.3661M15.7962 17.0594C16.2191 17.4848 16.2196 18.1747 15.7962 18.5995C15.696 18.701 15.5768 18.7815 15.4454 18.8363C15.3141 18.8912 15.1732 18.9193 15.031 18.9191C14.8885 18.9193 14.7474 18.8912 14.6158 18.8365C14.4842 18.7817 14.3646 18.7014 14.2639 18.6001L9.41749 13.7284C7.96967 12.2724 7.96967 9.90284 9.41749 8.44652C10.119 7.74189 11.0517 7.35344 12.0437 7.35344H12.0448C13.0367 7.35344 13.9694 7.74239 14.6705 8.44815C15.1447 8.92448 15.4817 9.52099 15.6458 10.1744C15.81 10.8277 15.7951 11.5136 15.6027 12.1592C15.4305 12.7356 14.8281 13.0637 14.2545 12.8912C13.6811 12.7194 13.3547 12.1124 13.5256 11.5356C13.6061 11.2666 13.6126 10.9806 13.5443 10.7081C13.4761 10.4357 13.3357 10.1869 13.1381 9.98823C12.8457 9.69398 12.4577 9.53205 12.0443 9.53186H12.0437C11.6302 9.53186 11.2422 9.6936 10.9497 9.98716C10.3463 10.5938 10.3463 11.5811 10.9497 12.1878L15.7962 17.0594" fill="#5088AC"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2.10736 19L14.357 11.2023H20.7118C20.9079 11.2023 21.0828 11.3623 21.0828 11.5821C21.0828 11.7612 21.0059 11.8424 20.9079 11.9021L14.8892 15.5919C14.4971 15.8332 14.3617 16.3132 14.3617 16.6715L14.3547 18.9976H22V5.48004C22 5.21972 21.804 5 21.5122 5H14.2193L2 12.7619V18.9976H2.10736V19Z" fill="#C4C6D7"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 420 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.33474 21H19.6653V20.9972C20.0187 20.9953 20.3571 20.8541 20.607 20.6042C20.8569 20.3543 20.9981 20.0159 21 19.6624V4.33193C20.9985 3.97865 20.8573 3.64031 20.6073 3.39076C20.3572 3.14122 20.0185 3.00074 19.6653 3H4.33474C3.98097 3.00074 3.64191 3.14161 3.39176 3.39176C3.1416 3.64191 3.00074 3.98098 3 4.33474V19.6653C3.00074 20.019 3.1416 20.3581 3.39176 20.6082C3.64191 20.8584 3.98097 20.9993 4.33474 21ZM17.5898 19.1128V4.78455L14.5561 5.3927V9.84361C13.7566 9.05261 12.6807 8.60592 11.4225 8.60592C8.82949 8.60592 6.40698 10.9845 6.40698 13.9269C6.40698 16.8692 8.67084 19.2152 11.4225 19.2152C12.6807 19.2152 13.7566 18.7921 14.5561 18.0158V19.1128H17.5898ZM13.918 15.6821C13.4385 16.1616 12.7883 16.4312 12.1102 16.4318C11.4321 16.4312 10.7819 16.1616 10.3024 15.6821C9.82293 15.2026 9.55329 14.5524 9.55269 13.8743C9.55321 13.1961 9.82282 12.5459 10.3023 12.0663C10.7818 11.5868 11.4321 11.3171 12.1102 11.3165C12.7884 11.3171 13.4386 11.5868 13.9181 12.0663C14.3976 12.5459 14.6672 13.1961 14.6677 13.8743C14.6671 14.5524 14.3975 15.2026 13.918 15.6821Z" fill="#C4C6D7"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.8465 21C9.58866 21 7.52422 20.1952 5.92808 18.8639L2 19.3873L3.51754 15.7339C2.98882 14.5959 2.6922 13.3325 2.6922 12C2.6922 7.02973 6.79073 3 11.8465 3C16.9019 3 21 7.02973 21 12C21 16.9712 16.902 21 11.8465 21ZM16.8449 11.9743V11.9492C16.8449 9.35213 14.9673 7.50027 11.7299 7.50027H8.23337V16.5003H11.6781C14.9406 16.5004 16.8449 14.5712 16.8449 11.9743ZM11.7685 14.2891H10.7457V9.71213H11.7685C13.2706 9.71213 14.2676 10.5475 14.2676 11.9881V12.0132C14.2676 13.466 13.2706 14.2891 11.7685 14.2891Z" fill="#C4C6D7"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 636 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19.4286 15.6964C19.3583 16.1284 18.8762 20.1161 18.8058 21C14.0697 20.8273 9.97075 20.8095 4 21V19.9756C5.82644 19.6159 6.43594 19.6532 6.45092 18.5592C6.52296 15.6533 6.5925 8.74984 6.45092 5.62163C6.40956 4.47817 5.96356 4.54629 4 4.17528V3.15071C6.96862 3.24546 14.283 3.49423 18.5848 3C18.4442 4.53684 18.2735 8.08257 18.2735 8.08257H17.3394C16.8953 6.3616 16.5857 4.44643 15.1396 4.44643H9.63513C9.2233 4.44643 9.20317 4.58708 9.20317 4.83818V11.4175C11.5335 11.4375 12.759 11.317 12.759 11.317C13.9551 11.2787 13.8662 10.9754 14.3963 8.69531H15.4308C15.2538 12.7675 15.2737 11.1795 15.3605 15.1339H14.326C13.9581 13.5233 13.9617 12.6813 12.7388 12.663C12.7388 12.663 11.875 12.5826 9.20313 12.5826V18.1674C9.20313 19.2121 9.77574 19.7042 10.981 19.7042H14.567C17.1238 19.7042 17.2415 18.7 18.5347 15.6964H19.4286V15.6964Z" fill="#C4C6D7"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 959 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M17.7358 5.3661C14.61 2.22373 9.5308 2.21103 6.38892 5.32991L6.35205 5.36679C3.21517 8.52223 3.21617 13.6553 6.35392 16.8096L11.2005 21.6812C11.301 21.7825 11.4203 21.8628 11.5518 21.9175C11.6832 21.9722 11.8241 22.0002 11.9664 22C12.2434 22 12.5213 21.8941 12.7327 21.6812C13.1553 21.2558 13.1553 20.566 12.7327 20.1408L7.88542 15.2687C5.59942 12.9709 5.59211 9.23497 7.86417 6.92742L7.8863 6.90562C10.1799 4.60115 13.9112 4.60184 16.2034 6.90637C18.0857 8.79883 18.3558 12.0374 16.8306 14.4405C16.5089 14.9472 16.6571 15.6207 17.1611 15.9442C17.6662 16.2686 18.3352 16.119 18.6567 15.6125C20.7497 12.3153 20.3623 8.00648 17.7358 5.3661M15.7962 17.0594C16.2191 17.4848 16.2196 18.1747 15.7962 18.5995C15.696 18.701 15.5768 18.7815 15.4454 18.8363C15.3141 18.8912 15.1732 18.9193 15.031 18.9191C14.8885 18.9193 14.7474 18.8912 14.6158 18.8365C14.4842 18.7817 14.3646 18.7014 14.2639 18.6001L9.41749 13.7284C7.96967 12.2724 7.96967 9.90284 9.41749 8.44652C10.119 7.74189 11.0517 7.35344 12.0437 7.35344H12.0448C13.0367 7.35344 13.9694 7.74239 14.6705 8.44815C15.1447 8.92448 15.4817 9.52099 15.6458 10.1744C15.81 10.8277 15.7951 11.5136 15.6027 12.1592C15.4305 12.7356 14.8281 13.0637 14.2545 12.8912C13.6811 12.7194 13.3547 12.1124 13.5256 11.5356C13.6061 11.2666 13.6126 10.9806 13.5443 10.7081C13.4761 10.4357 13.3357 10.1869 13.1381 9.98823C12.8457 9.69398 12.4577 9.53205 12.0443 9.53186H12.0437C11.6302 9.53186 11.2422 9.6936 10.9497 9.98716C10.3463 10.5938 10.3463 11.5811 10.9497 12.1878L15.7962 17.0594" fill="#C4C6D7"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2.10736 19L14.357 11.2023H20.7118C20.9079 11.2023 21.0828 11.3623 21.0828 11.5821C21.0828 11.7612 21.0059 11.8424 20.9079 11.9021L14.8892 15.5919C14.4971 15.8332 14.3617 16.3132 14.3617 16.6715L14.3547 18.9976H22V5.48004C22 5.21972 21.804 5 21.5122 5H14.2193L2 12.7619V18.9976H2.10736V19Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 418 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19.6653 21H4.33474C3.98097 20.9993 3.64191 20.8584 3.39176 20.6082C3.1416 20.3581 3.00074 20.019 3 19.6653V4.33474C3.00074 3.98098 3.1416 3.64191 3.39176 3.39176C3.64191 3.14161 3.98097 3.00074 4.33474 3H19.6653C20.0185 3.00074 20.3572 3.14122 20.6073 3.39076C20.8573 3.64031 20.9985 3.97865 21 4.33193V19.6624C20.9982 20.0159 20.8569 20.3543 20.607 20.6042C20.3571 20.8541 20.0187 20.9953 19.6653 20.9972V21Z" fill="#2A62AA"/>
|
||||
<path d="M17.5898 4.78455V19.1128H14.5561V18.0158C13.7566 18.7921 12.6807 19.2152 11.4225 19.2152C8.67084 19.2152 6.40698 16.8692 6.40698 13.9269C6.40698 10.9845 8.82949 8.60592 11.4225 8.60592C12.6807 8.60592 13.7566 9.05261 14.5561 9.84361V5.3927L17.5898 4.78455ZM12.1102 16.4318C12.7883 16.4312 13.4385 16.1616 13.918 15.6821C14.3975 15.2026 14.6671 14.5524 14.6677 13.8743C14.6672 13.1961 14.3976 12.5459 13.9181 12.0663C13.4386 11.5868 12.7884 11.3171 12.1102 11.3165C11.4321 11.3171 10.7818 11.5868 10.3023 12.0663C9.82282 12.5459 9.55321 13.1961 9.55269 13.8743C9.55329 14.5524 9.82293 15.2026 10.3024 15.6821C10.7819 16.1616 11.4321 16.4312 12.1102 16.4318V16.4318Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.8465 21C9.58866 21 7.52422 20.1952 5.92808 18.8639L2 19.3873L3.51754 15.7339C2.98882 14.5959 2.6922 13.3325 2.6922 12C2.6922 7.02973 6.79073 3 11.8465 3C16.9019 3 21 7.02973 21 12C21 16.9712 16.902 21 11.8465 21ZM16.8449 11.9743V11.9492C16.8449 9.35213 14.9673 7.50027 11.7299 7.50027H8.23337V16.5003H11.6781C14.9406 16.5004 16.8449 14.5712 16.8449 11.9743ZM11.7685 14.2891H10.7457V9.71213H11.7685C13.2706 9.71213 14.2676 10.5475 14.2676 11.9881V12.0132C14.2676 13.466 13.2706 14.2891 11.7685 14.2891Z" fill="#2E9FFF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 636 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19.4286 15.6964C19.3583 16.1284 18.8762 20.1161 18.8058 21C14.0697 20.8273 9.97075 20.8095 4 21V19.9756C5.82644 19.6159 6.43594 19.6532 6.45092 18.5592C6.52296 15.6533 6.5925 8.74984 6.45092 5.62163C6.40956 4.47817 5.96356 4.54629 4 4.17528V3.15071C6.96862 3.24546 14.283 3.49423 18.5848 3C18.4442 4.53684 18.2735 8.08257 18.2735 8.08257H17.3394C16.8953 6.3616 16.5857 4.44643 15.1396 4.44643H9.63513C9.2233 4.44643 9.20317 4.58708 9.20317 4.83818V11.4175C11.5335 11.4375 12.759 11.317 12.759 11.317C13.9551 11.2787 13.8662 10.9754 14.3963 8.69531H15.4308C15.2538 12.7675 15.2737 11.1795 15.3605 15.1339H14.326C13.9581 13.5233 13.9617 12.6813 12.7388 12.663C12.7388 12.663 11.875 12.5826 9.20313 12.5826V18.1674C9.20313 19.2121 9.77574 19.7042 10.981 19.7042H14.567C17.1238 19.7042 17.2415 18.7 18.5347 15.6964H19.4286V15.6964Z" fill="#F97431"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 959 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M17.7358 5.3661C14.61 2.22373 9.5308 2.21103 6.38892 5.32991L6.35205 5.36679C3.21517 8.52223 3.21617 13.6553 6.35392 16.8096L11.2005 21.6812C11.301 21.7825 11.4203 21.8628 11.5518 21.9175C11.6832 21.9722 11.8241 22.0002 11.9664 22C12.2434 22 12.5213 21.8941 12.7327 21.6812C13.1553 21.2558 13.1553 20.566 12.7327 20.1408L7.88542 15.2687C5.59942 12.9709 5.59211 9.23497 7.86417 6.92742L7.8863 6.90562C10.1799 4.60115 13.9112 4.60184 16.2034 6.90637C18.0857 8.79883 18.3558 12.0374 16.8306 14.4405C16.5089 14.9472 16.6571 15.6207 17.1611 15.9442C17.6662 16.2686 18.3352 16.119 18.6567 15.6125C20.7497 12.3153 20.3623 8.00648 17.7358 5.3661M15.7962 17.0594C16.2191 17.4848 16.2196 18.1747 15.7962 18.5995C15.696 18.701 15.5768 18.7815 15.4454 18.8363C15.3141 18.8912 15.1732 18.9193 15.031 18.9191C14.8885 18.9193 14.7474 18.8912 14.6158 18.8365C14.4842 18.7817 14.3646 18.7014 14.2639 18.6001L9.41749 13.7284C7.96967 12.2724 7.96967 9.90284 9.41749 8.44652C10.119 7.74189 11.0517 7.35344 12.0437 7.35344H12.0448C13.0367 7.35344 13.9694 7.74239 14.6705 8.44815C15.1447 8.92448 15.4817 9.52099 15.6458 10.1744C15.81 10.8277 15.7951 11.5136 15.6027 12.1592C15.4305 12.7356 14.8281 13.0637 14.2545 12.8912C13.6811 12.7194 13.3547 12.1124 13.5256 11.5356C13.6061 11.2666 13.6126 10.9806 13.5443 10.7081C13.4761 10.4357 13.3357 10.1869 13.1381 9.98823C12.8457 9.69398 12.4577 9.53205 12.0443 9.53186H12.0437C11.6302 9.53186 11.2422 9.6936 10.9497 9.98716C10.3463 10.5938 10.3463 11.5811 10.9497 12.1878L15.7962 17.0594" fill="#5088AC"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2.10736 19L14.357 11.2023H20.7118C20.9079 11.2023 21.0828 11.3623 21.0828 11.5821C21.0828 11.7612 21.0059 11.8424 20.9079 11.9021L14.8892 15.5919C14.4971 15.8332 14.3617 16.3132 14.3617 16.6715L14.3547 18.9976H22V5.48004C22 5.21972 21.804 5 21.5122 5H14.2193L2 12.7619V18.9976H2.10736V19Z" fill="#373B4D"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 420 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.33474 21H19.6653V20.9972C20.0187 20.9953 20.3571 20.8541 20.607 20.6042C20.8569 20.3543 20.9981 20.0159 21 19.6624V4.33193C20.9985 3.97865 20.8573 3.64031 20.6073 3.39076C20.3572 3.14122 20.0185 3.00074 19.6653 3H4.33474C3.98097 3.00074 3.64191 3.14161 3.39176 3.39176C3.1416 3.64191 3.00074 3.98098 3 4.33474V19.6653C3.00074 20.019 3.1416 20.3581 3.39176 20.6082C3.64191 20.8584 3.98097 20.9993 4.33474 21ZM17.5898 19.1128V4.78455L14.5561 5.3927V9.84361C13.7566 9.05261 12.6807 8.60592 11.4225 8.60592C8.82949 8.60592 6.40698 10.9845 6.40698 13.9269C6.40698 16.8692 8.67084 19.2152 11.4225 19.2152C12.6807 19.2152 13.7566 18.7921 14.5561 18.0158V19.1128H17.5898ZM13.918 15.6821C13.4385 16.1616 12.7883 16.4312 12.1102 16.4318C11.4321 16.4312 10.7819 16.1616 10.3024 15.6821C9.82293 15.2026 9.55329 14.5524 9.55269 13.8743C9.55321 13.1961 9.82282 12.5459 10.3023 12.0663C10.7818 11.5868 11.4321 11.3171 12.1102 11.3165C12.7884 11.3171 13.4386 11.5868 13.9181 12.0663C14.3976 12.5459 14.6672 13.1961 14.6677 13.8743C14.6671 14.5524 14.3975 15.2026 13.918 15.6821Z" fill="#373B4D"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.8465 21C9.58866 21 7.52422 20.1952 5.92808 18.8639L2 19.3873L3.51754 15.7339C2.98882 14.5959 2.6922 13.3325 2.6922 12C2.6922 7.02973 6.79073 3 11.8465 3C16.9019 3 21 7.02973 21 12C21 16.9712 16.902 21 11.8465 21ZM16.8449 11.9743V11.9492C16.8449 9.35213 14.9673 7.50027 11.7299 7.50027H8.23337V16.5003H11.6781C14.9406 16.5004 16.8449 14.5712 16.8449 11.9743ZM11.7685 14.2891H10.7457V9.71213H11.7685C13.2706 9.71213 14.2676 10.5475 14.2676 11.9881V12.0132C14.2676 13.466 13.2706 14.2891 11.7685 14.2891Z" fill="#373B4D"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 636 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19.4286 15.6964C19.3583 16.1284 18.8762 20.1161 18.8058 21C14.0697 20.8273 9.97075 20.8095 4 21V19.9756C5.82644 19.6159 6.43594 19.6532 6.45092 18.5592C6.52296 15.6533 6.5925 8.74984 6.45092 5.62163C6.40956 4.47817 5.96356 4.54629 4 4.17528V3.15071C6.96862 3.24546 14.283 3.49423 18.5848 3C18.4442 4.53684 18.2735 8.08257 18.2735 8.08257H17.3394C16.8953 6.3616 16.5857 4.44643 15.1396 4.44643H9.63513C9.2233 4.44643 9.20317 4.58708 9.20317 4.83818V11.4175C11.5335 11.4375 12.759 11.317 12.759 11.317C13.9551 11.2787 13.8662 10.9754 14.3963 8.69531H15.4308C15.2538 12.7675 15.2737 11.1795 15.3605 15.1339H14.326C13.9581 13.5233 13.9617 12.6813 12.7388 12.663C12.7388 12.663 11.875 12.5826 9.20313 12.5826V18.1674C9.20313 19.2121 9.77574 19.7042 10.981 19.7042H14.567C17.1238 19.7042 17.2415 18.7 18.5347 15.6964H19.4286V15.6964Z" fill="#373B4D"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 959 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M17.7358 5.3661C14.61 2.22373 9.5308 2.21103 6.38892 5.32991L6.35205 5.36679C3.21517 8.52223 3.21617 13.6553 6.35392 16.8096L11.2005 21.6812C11.301 21.7825 11.4203 21.8628 11.5518 21.9175C11.6832 21.9722 11.8241 22.0002 11.9664 22C12.2434 22 12.5213 21.8941 12.7327 21.6812C13.1553 21.2558 13.1553 20.566 12.7327 20.1408L7.88542 15.2687C5.59942 12.9709 5.59211 9.23497 7.86417 6.92742L7.8863 6.90562C10.1799 4.60115 13.9112 4.60184 16.2034 6.90637C18.0857 8.79883 18.3558 12.0374 16.8306 14.4405C16.5089 14.9472 16.6571 15.6207 17.1611 15.9442C17.6662 16.2686 18.3352 16.119 18.6567 15.6125C20.7497 12.3153 20.3623 8.00648 17.7358 5.3661M15.7962 17.0594C16.2191 17.4848 16.2196 18.1747 15.7962 18.5995C15.696 18.701 15.5768 18.7815 15.4454 18.8363C15.3141 18.8912 15.1732 18.9193 15.031 18.9191C14.8885 18.9193 14.7474 18.8912 14.6158 18.8365C14.4842 18.7817 14.3646 18.7014 14.2639 18.6001L9.41749 13.7284C7.96967 12.2724 7.96967 9.90284 9.41749 8.44652C10.119 7.74189 11.0517 7.35344 12.0437 7.35344H12.0448C13.0367 7.35344 13.9694 7.74239 14.6705 8.44815C15.1447 8.92448 15.4817 9.52099 15.6458 10.1744C15.81 10.8277 15.7951 11.5136 15.6027 12.1592C15.4305 12.7356 14.8281 13.0637 14.2545 12.8912C13.6811 12.7194 13.3547 12.1124 13.5256 11.5356C13.6061 11.2666 13.6126 10.9806 13.5443 10.7081C13.4761 10.4357 13.3357 10.1869 13.1381 9.98823C12.8457 9.69398 12.4577 9.53205 12.0443 9.53186H12.0437C11.6302 9.53186 11.2422 9.6936 10.9497 9.98716C10.3463 10.5938 10.3463 11.5811 10.9497 12.1878L15.7962 17.0594" fill="#373B4D"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |