From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server-vie001.gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_ZEN_BLOCKED_OPENDNS autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1741185663; bh=lomes8MnF3BNrYOzfkX0+5G6IBaSC9oNq3YJxaQdTCc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Transfer-Encoding:Message-ID:Date:From: Reply-To:Subject:To:Cc:In-Reply-To:References:Resent-Date: Resent-From:Resent-To:Resent-Cc:User-Agent:Content-Type: Content-Transfer-Encoding; b=QrZIDh3jLS0jRlbo4i7cp/LpRdrrModEN4C9CpIWTyG1ajl5p8l7EXGYPrqZ2q8Cg L+umLwmC2hHdgBhUWs9bHBg/N2Nt3m+Sd2MzflivfIKfVAoTHlky9Bbi2FuHBuk8l9 X/Xhv4AEG3eKe5Pzcx+IQ5EKXdu9MX7+rL5r36GkwZAxea6MPMQTmlNykefnk/x/VO +zPFvK3rtkbFbEuB8CxHDT9QZpufhc92wES/gQB+ebg8HU0cq/er8VEmIZVHvNHDQ0 AjwFpP0AhHqt00a9JobDsTHIm4wHkNPELOkkm0YGmdozNxRUSwVOcxnUHjWOm4q/ir PHB/IgHOQkhhw== Received: from localhost.localdomain (unknown [203.217.140.198]) by server-vie001.gnuweeb.org (Postfix) with ESMTPSA id 4502520B4831; Wed, 5 Mar 2025 14:41:02 +0000 (UTC) From: Muhammad Rizki To: Ammar Faizi Cc: Muhammad Rizki , Alviro Iskandar Setiawan , GNU/Weeb Mailing List Subject: [PATCH v1 11/17] feat(icons): Add social icons Date: Wed, 5 Mar 2025 21:40:10 +0700 Message-ID: <20250305144018.267-12-kiizuha@gnuweeb.org> X-Mailer: git-send-email 2.46.0.windows.1 In-Reply-To: <20250305144018.267-1-kiizuha@gnuweeb.org> References: <20250305144018.267-1-kiizuha@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: This social icons will be used in the profile form. Signed-off-by: Muhammad Rizki --- src/lib/components/icons/icon-discord.svelte | 35 +++++++++++++++++++ src/lib/components/icons/icon-github.svelte | 35 +++++++++++++++++++ src/lib/components/icons/icon-telegram.svelte | 35 +++++++++++++++++++ src/lib/components/icons/icon-twitter.svelte | 35 +++++++++++++++++++ 4 files changed, 140 insertions(+) create mode 100644 src/lib/components/icons/icon-discord.svelte create mode 100644 src/lib/components/icons/icon-github.svelte create mode 100644 src/lib/components/icons/icon-telegram.svelte create mode 100644 src/lib/components/icons/icon-twitter.svelte diff --git a/src/lib/components/icons/icon-discord.svelte b/src/lib/compone= nts/icons/icon-discord.svelte new file mode 100644 index 0000000..7f9e955 --- /dev/null +++ b/src/lib/components/icons/icon-discord.svelte @@ -0,0 +1,35 @@ + + +{#if href} + + + + + +{:else} + + + +{/if} diff --git a/src/lib/components/icons/icon-github.svelte b/src/lib/componen= ts/icons/icon-github.svelte new file mode 100644 index 0000000..9a323d3 --- /dev/null +++ b/src/lib/components/icons/icon-github.svelte @@ -0,0 +1,35 @@ + + +{#if href} + + + + + +{:else} + + + +{/if} diff --git a/src/lib/components/icons/icon-telegram.svelte b/src/lib/compon= ents/icons/icon-telegram.svelte new file mode 100644 index 0000000..7e9982d --- /dev/null +++ b/src/lib/components/icons/icon-telegram.svelte @@ -0,0 +1,35 @@ + + +{#if href} + + + + + +{:else} + + + +{/if} diff --git a/src/lib/components/icons/icon-twitter.svelte b/src/lib/compone= nts/icons/icon-twitter.svelte new file mode 100644 index 0000000..a2162ec --- /dev/null +++ b/src/lib/components/icons/icon-twitter.svelte @@ -0,0 +1,35 @@ + + +{#if href} + + + + + +{:else} + + + +{/if} --=20 Muhammad Rizki