Skip to content

Commit

Permalink
fix dots (#1046)
Browse files Browse the repository at this point in the history
  • Loading branch information
ejf89 authored May 9, 2023
1 parent 01b0efd commit b42cfc2
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions js/sdk/src/components/Dots.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ import Typography from '@mui/material/Typography'
const Dots = ({ size, msg }) => {
return (
<StyledDots size={size}>
<Typography variant="body2">
{msg} <span></span>
<span></span>
<span></span>
</Typography>
{msg && (
<Typography variant="body2" style={{ paddingRight: '2px' }}>
{msg}
</Typography>
)}
<span></span>
<span></span>
<span></span>
</StyledDots>
)
}
Expand Down

0 comments on commit b42cfc2

Please sign in to comment.