mirror of
https://github.com/go-gitea/gitea
synced 2024-11-03 12:48:59 +01:00
d3f618362a
Signed-off-by: jolheiser <john.olheiser@gmail.com>
3 lines
160 B
JavaScript
3 lines
160 B
JavaScript
export function svg(name, size) {
|
|
return `<svg class="svg ${name}" width="${size}" height="${size}" aria-hidden="true"><use xlink:href="#${name}"/></svg>`;
|
|
}
|