bug: strokeWidth on spinner

This commit is contained in:
Kieran 2023-02-28 19:48:06 +00:00
parent a39d015917
commit 4599937176
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import "./Spinner.css";
const Spinner = (props: IconProps) => (
<svg width="20" height="20" stroke="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" {...props}>
<g className="spinner_V8m1">
<circle cx="10" cy="10" r="7.5" fill="none" stroke-width="3"></circle>
<circle cx="10" cy="10" r="7.5" fill="none" strokeWidth="3"></circle>
</g>
</svg>
);