mirror of
https://gitea.com/gitea/gitea-mirror.git
synced 2026-03-20 20:00:29 +00:00
4 lines
160 B
JavaScript
4 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>`;
|
|
}
|