Skip to content

Commit 9304873

Browse files
PROd-2533 #comment fix loading spinner styling #time 15m
1 parent 623a03e commit 9304873

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src-ts/lib/loading-spinner/LoadingSpinner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface LoadingSpinnerProps {
1616

1717
const LoadingSpinner: FC<LoadingSpinnerProps> = ({ show = false, className }: LoadingSpinnerProps) => {
1818
return (
19-
<div className={classNames(styles['loading-spinner'], show ? 'show' : 'hide', className)}>
19+
<div className={classNames(styles['loading-spinner'], styles[show ? 'show' : 'hide'], className)}>
2020
<PuffLoader color={'#2196f3'} loading={true} size={100} />
2121
</div>
2222
)

0 commit comments

Comments
 (0)