UNPKG

@equinor/eds-core-react

Version:

The React implementation of the Equinor Design System

15 lines (13 loc) 257 B
let _icons = {}; /** Add icons to library to be used for rendering using name. This needs to be done lonly once */ const add = icons => { _icons = { ..._icons, ...icons }; }; const get = name => { return _icons[name]; }; export { add, get };