You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There should not be a dependence on importing all icons into rimble-ui. The current Icon component imports import * as RimbleIcons from @rimble/icons all icons or import Icon from "../Icon" . This creates a large library bundle size that does not tree-shake properly.
Components that utilize a global import that will need refactoring:
Icon
ToastMessage
Button
Refactor components to only import single icons as needed:
EthAddress
FileInput
The text was updated successfully, but these errors were encountered:
There should not be a dependence on importing all icons into rimble-ui. The current Icon component imports
import * as RimbleIcons from @rimble/icons
all icons orimport Icon from "../Icon"
. This creates a large library bundle size that does not tree-shake properly.Components that utilize a global import that will need refactoring:
Refactor components to only import single icons as needed:
The text was updated successfully, but these errors were encountered: