From 9c8412474a65f3b86fa0bfe0d69142d72d24e7d1 Mon Sep 17 00:00:00 2001 From: sarahrainsberger Date: Thu, 7 Nov 2024 16:25:24 +0000 Subject: [PATCH] add flickr svg path and to list of icons --- packages/starlight/components/Icons.ts | 1 + packages/starlight/schemas/social.ts | 2 ++ 2 files changed, 3 insertions(+) diff --git a/packages/starlight/components/Icons.ts b/packages/starlight/components/Icons.ts index 41f7284b56f..70e540a8a1b 100644 --- a/packages/starlight/components/Icons.ts +++ b/packages/starlight/components/Icons.ts @@ -158,6 +158,7 @@ export const BuiltInIcons = { '', deno: '', jsr: '', + flickr: '' }; export const Icons = { diff --git a/packages/starlight/schemas/social.ts b/packages/starlight/schemas/social.ts index c6e925489ed..d11a10b98fd 100644 --- a/packages/starlight/schemas/social.ts +++ b/packages/starlight/schemas/social.ts @@ -35,6 +35,7 @@ export const socialLinks = [ 'zulip', 'pinterest', 'tiktok', + 'flickr', ] as const; export const SocialLinksSchema = () => @@ -85,6 +86,7 @@ export const SocialLinksSchema = () => zulip: 'Zulip', pinterest: 'Pinterest', tiktok: 'TikTok', + flickr: 'Flickr', }[key]; labelledLinks[key] = { label, url }; }