Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created June 16, 2019 17:54
Show Gist options
  • Save jsmanifest/ebcca07f3e858f7f140cc0ad646aa15e to your computer and use it in GitHub Desktop.
Save jsmanifest/ebcca07f3e858f7f140cc0ad646aa15e to your computer and use it in GitHub Desktop.
const Spinner = ({
children,
containerProps,
spinnerProps,
xs,
sm,
center,
}) => (
<div
className={cx('spinner-container', {
'flex-center': !!center,
})}
{...containerProps}
>
<div>
<div>
<MDSpinner
size={xs ? 15 : sm ? 50 : 100}
borderSize={xs ? 1 : 2}
{...spinnerProps}
/>
</div>
<h4
className={cx('spinner', {
'spinner-xs': !!xs,
})}
>
{children}
</h4>
</div>
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment