UNPKG

rn-logo-replacer

Version:

This is a project aiming at remplacing the logo of a react native app with a single npx command

18 lines (17 loc) 334 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Icon = void 0; class Icon { constructor(paths) { if (paths) { this.paths = paths; } else { this.paths = []; } } getPaths() { return this.paths; } } exports.Icon = Icon;