From f5640f41f37b6e1e5015c76d66c48daec7cc072d Mon Sep 17 00:00:00 2001 From: NotNite Date: Fri, 28 Apr 2023 17:12:49 -0400 Subject: [PATCH] add tailscale icon --- src/app/me/AboutMe.tsx | 7 ++++++- src/components/icons/TailscaleIcon.tsx | 26 ++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 src/components/icons/TailscaleIcon.tsx diff --git a/src/app/me/AboutMe.tsx b/src/app/me/AboutMe.tsx index 90ff8a5..3894512 100644 --- a/src/app/me/AboutMe.tsx +++ b/src/app/me/AboutMe.tsx @@ -20,6 +20,7 @@ import inputStyles from "@/components/Input.module.css"; import Connection from "@/components/Connection"; import DiscordIcon from "@/components/icons/DiscordIcon"; import GitHubIcon from "@/components/icons/GitHubIcon"; +import TailscaleIcon from "@/components/icons/TailscaleIcon"; type UpdateResponse = { ok: boolean; @@ -214,7 +215,11 @@ export default function AboutMe({ authState={githubState} icon={GitHubIcon} /> - + diff --git a/src/components/icons/TailscaleIcon.tsx b/src/components/icons/TailscaleIcon.tsx new file mode 100644 index 0000000..3de1ec3 --- /dev/null +++ b/src/components/icons/TailscaleIcon.tsx @@ -0,0 +1,26 @@ +import React from "react"; + +// https://tailscale.com/files/dist/tailscale-press-kit.zip +export default function TailscaleIcon() { + return ( + + + + + + + + + + + + + + ); +}