Lines Matching refs:icon
26 const withNotificationIcons = (config, { icon }) => { argument
28 icon = icon || getNotificationIcon(config);
32 await setNotificationIconAsync(config.modRequest.projectRoot, icon);
47 const withNotificationManifest = (config, { icon, color }) => { argument
49 icon = icon || getNotificationIcon(config);
52 config.modResults = setNotificationConfig({ icon, color }, config.modResults); field
68 return config.notification?.icon || null;
85 async function setNotificationIconAsync(projectRoot, icon) { argument
86 if (icon) {
87 await writeNotificationIconImageFilesAsync(icon, projectRoot);
96 if (props.icon) {
110 async function writeNotificationIconImageFilesAsync(icon, projectRoot) { argument
120 src: icon,
177 const withNotificationsAndroid = (config, { icon = null, color = null, sounds = [] }) => { argument
179 config = (0, exports.withNotificationIcons)(config, { icon }); field
180 config = (0, exports.withNotificationManifest)(config, { icon, color }); field