Replies: 1 comment
-
Good point, I've already added this feature in next minor release, it will accept any react node and display as loader: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
While I do love the default loading icon with mantine, it would be great if we could simply pass in an icon to be used.
For
<Loading>
this may not be worth the effort, as you could simply just import your own icon anyway.However the
<LoadingOverlay>
provides a nice utility with the transparent screen over the parent container.I'd love to be able to do:
<LoadingOverlay icon={<FontAwesomeIcon icon={faSpinner} spin />} />
and have the overlay effect with my spinner.This doesn't seem to be something we can manually do with the
<Overlay>
component as it purely an overlay without children.Beta Was this translation helpful? Give feedback.
All reactions