Files
Atay-Makhzan/web_src/js/utils.js
T

4 lines
160 B
JavaScript
Raw Normal View History

2020-02-11 19:53:18 -06:00
export function svg(name, size) {
2020-02-18 00:07:58 -06:00
return `<svg class="svg ${name}" width="${size}" height="${size}" aria-hidden="true"><use xlink:href="#${name}"/></svg>`;
2020-02-11 19:53:18 -06:00
}