From aec9edd14827a45fbc92d82db83dd713571e0c2d Mon Sep 17 00:00:00 2001 From: HiDeoo Date: Tue, 7 Jan 2025 16:28:41 +0100 Subject: Add new icons (#2760) Co-authored-by: Chris Swithinbank --- .changeset/flat-sheep-own.md | 5 +++++ packages/starlight/components/Icons.ts | 10 ++++++++++ 2 files changed, 15 insertions(+) create mode 100644 .changeset/flat-sheep-own.md diff --git a/.changeset/flat-sheep-own.md b/.changeset/flat-sheep-own.md new file mode 100644 index 00000000..8e45ae0c --- /dev/null +++ b/.changeset/flat-sheep-own.md @@ -0,0 +1,5 @@ +--- +'@astrojs/starlight': patch +--- + +Adds 5 new icons: `left-caret`, `up-arrow`, `down-arrow`, `download`, and `cloud-download`. diff --git a/packages/starlight/components/Icons.ts b/packages/starlight/components/Icons.ts index 0bb0d49a..a6a9b742 100644 --- a/packages/starlight/components/Icons.ts +++ b/packages/starlight/components/Icons.ts @@ -7,6 +7,12 @@ export const BuiltInIcons = { '', 'right-caret': '', + 'left-caret': + '', + 'up-arrow': + '', + 'down-arrow': + '', 'right-arrow': '', 'left-arrow': @@ -25,6 +31,10 @@ export const BuiltInIcons = { '', external: '', + download: + '', + 'cloud-download': + '', moon: '', sun: '', laptop: -- cgit