Skip to content

Commit

Permalink
fix(core-components): hide Spinner Loading... text
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar committed Jun 18, 2022
1 parent 4cdbb17 commit d5bfc79
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ const LoadingSpinner: React.FC<LoadingSpinnerProps> = ({
}) => {
return (
<div className={`loading-icon ${className}`} data-testid="loading-spinner">
<Spinner className={placement} />
<Spinner className={placement}>
<span className="sr-only">Loading...</span>
</Spinner>
</div>
);
};
Expand Down

0 comments on commit d5bfc79

Please sign in to comment.