diff --git a/src/components/Icon.tsx b/src/components/Icon.tsx index f5e6d4b..e37facd 100644 --- a/src/components/Icon.tsx +++ b/src/components/Icon.tsx @@ -8,6 +8,7 @@ import { FileZipIcon as FileZip, GearIcon as Gear, GrabberIcon as Grabber, + HourglassIcon as Hourglass, Icon as OcticonIcon, IconProps, MarkdownIcon as Markdown, @@ -25,6 +26,11 @@ function getSVGIconComponent( name: string } { switch (type) { + case 'hourglass': + return { + IconComponent: Hourglass, + name: 'Hourglass', + } case 'submodule': return { IconComponent: Submodule, diff --git a/src/components/LoadingIndicator.tsx b/src/components/LoadingIndicator.tsx index 86bc16f..c0d0dad 100644 --- a/src/components/LoadingIndicator.tsx +++ b/src/components/LoadingIndicator.tsx @@ -8,7 +8,7 @@ export function LoadingIndicator({ text }: Props) { return (