diff options
Diffstat (limited to 'apps/browser-extension/src/Spinner.tsx')
| -rw-r--r-- | apps/browser-extension/src/Spinner.tsx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/apps/browser-extension/src/Spinner.tsx b/apps/browser-extension/src/Spinner.tsx new file mode 100644 index 00000000..9fd8839b --- /dev/null +++ b/apps/browser-extension/src/Spinner.tsx @@ -0,0 +1,18 @@ +export default function Spinner() { + return ( + <svg + xmlns="http://www.w3.org/2000/svg" + width="24" + height="24" + viewBox="0 0 24 24" + fill="none" + stroke="currentColor" + strokeWidth="2" + strokeLinecap="round" + strokeLinejoin="round" + className="animate-spin" + > + <path d="M21 12a9 9 0 1 1-6.219-8.56" /> + </svg> + ); +} |
