@react-native-vector-icons/common
Version:
Customizable Icons for React Native with support for image source and full styling.
16 lines (15 loc) • 384 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createIconSourceCache = createIconSourceCache;
function createIconSourceCache() {
const cache = new Map();
const setValue = (key, value) => cache.set(key, value);
const get = key => cache.get(key);
return {
setValue,
get
};
}
//# sourceMappingURL=create-icon-source-cache.js.map