Skip to content

Commit

Permalink
fix: loader (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
totraev authored Dec 6, 2024
1 parent 6e57ba7 commit c8e62ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Loader/Loader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function Loader({ size = 40, className }: LoaderProps) {
return (
<span className={twMerge("bbn-loader text-current", className)} style={{ width: size, height: size }}>
<svg viewBox="22 22 44 44">
<circle cx="44" cy="44" r="20.2" fill="none" stroke="currentColor" stroke-width="3.6" />
<circle cx="44" cy="44" r="20.2" fill="none" stroke="currentColor" strokeWidth="3.6" />
</svg>
</span>
);
Expand Down

0 comments on commit c8e62ea

Please sign in to comment.