From 378525e1522d5d2b96394247a71a0bfd0ca4b1bf Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Mon, 3 Oct 2022 01:19:28 +0200 Subject: [PATCH] Fix Spinner color --- components/Spinner.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Spinner.tsx b/components/Spinner.tsx index 2e6405a..2c332c5 100644 --- a/components/Spinner.tsx +++ b/components/Spinner.tsx @@ -12,7 +12,7 @@ const Spinner: NextPage<{size: number, color?: string}> = ({ size, color }) => { const vbSizeY = diameterY + (2 * padding); return
- +
; };