Skip to content

Commit

Permalink
fix Loading icon attr name issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rezahedi committed Mar 25, 2024
1 parent 01add6f commit d2e2203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/icons/Loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ export default function Loading({className}: {className?: string}) {
return (
<div className={className}>
<svg viewBox="0 0 32 32" aria-hidden="true" fill="currentColor" className="animate-spin">
<circle cx="16" cy="16" r="14" fill="none" stroke="currentColor" stroke-width="4" strokeOpacity={.2}></circle>
<circle cx="16" cy="16" r="14" fill="none" stroke="currentColor" stroke-width="4" strokeDasharray={80} strokeDashoffset={60}></circle>
<circle cx="16" cy="16" r="14" fill="none" stroke="currentColor" strokeWidth="4" strokeOpacity={.2}></circle>
<circle cx="16" cy="16" r="14" fill="none" stroke="currentColor" strokeWidth="4" strokeDasharray={80} strokeDashoffset={60}></circle>
</svg>
</div>
)
Expand Down

0 comments on commit d2e2203

Please sign in to comment.