1
0
Fork 0
template/functions/svg-icon.php

11 lines
95 B
PHP
Raw Normal View History

2024-04-25 21:55:08 +02:00
<?php
function svgicon($string) {
$arr = [
'' => ''
];
return $arr[$string];
}
2024-09-23 20:40:19 +02:00
?>