summaryrefslogtreecommitdiff
path: root/source/github-helpers/icon-loading.tsx
blob: 551fc0d01f0666b1b7d471680ea176f0033f7446 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import React from 'dom-chef';

export default function LoadingIcon(): JSX.Element {
	return (
		<img
			className="rgh-loading-icon"
			src="https://github.githubassets.com/images/spinners/octocat-spinner-128.gif"
			width="18"
		/>
	);
}