UNPKG

468 Btext/x-handlebars-templateView Raw
1/**
2 * Define theme "{{theme}}".
3 * @function {{theme}}
4 * @param {number} width - Image width
5 * @param {number} height - Image height
6 * @param {string} color1 - Shape color 1.
7 * @param {string} color2 - Shape color 2.
8 * @returns {string} - SVG string.
9 */
10
11const _svg = require('./_svg')
12
13/** @lends {{theme}} */
14function {{theme}} (width, height, color1, color2) {
15 return _svg(width, height, {
16
17 });
18}
19
20{{theme}}.$reversed = false
21
22module.exports = {{theme}}
23
\No newline at end of file