(svg, size, color, fraction = 0.65)
| 56 | |
| 57 | /** "any" PWA icon: logo with a margin (so rounding never crops), transparent. */ |
| 58 | export function renderPaddedIcon(svg, size, color, fraction = 0.65) { |
| 59 | return compose(svg, { width: size, logoColor: color, fraction }); |
| 60 | } |
| 61 | |
| 62 | /** apple-touch / maskable icon: padded logo on a solid (opaque) background. */ |
| 63 | export function renderSolidIcon(svg, size, { bg, logoColor, fraction = 0.62 }) { |
no test coverage detected