From a33a12231772c1dc4b7cc2db3477a6802f3ef53e Mon Sep 17 00:00:00 2001 From: Chris Swithinbank Date: Wed, 15 May 2024 00:37:24 +0200 Subject: Add comment and heart icons (#1837) --- .changeset/cyan-lions-deny.md | 5 +++++ packages/starlight/components/Icons.ts | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 .changeset/cyan-lions-deny.md diff --git a/.changeset/cyan-lions-deny.md b/.changeset/cyan-lions-deny.md new file mode 100644 index 00000000..27e600e7 --- /dev/null +++ b/.changeset/cyan-lions-deny.md @@ -0,0 +1,5 @@ +--- +'@astrojs/starlight': patch +--- + +Adds three new icons: `comment`, `comment-alt`, `heart` diff --git a/packages/starlight/components/Icons.ts b/packages/starlight/components/Icons.ts index 7a9d9ff0..e0b90442 100644 --- a/packages/starlight/components/Icons.ts +++ b/packages/starlight/components/Icons.ts @@ -56,6 +56,12 @@ export const BuiltInIcons = { '', random: '', + comment: + '', + 'comment-alt': + '', + heart: + '', github: '', gitlab: -- cgit