1
0
Fork 0
template/functions/svg-icon.php
2024-09-23 20:40:19 +02:00

11 lines
No EOL
95 B
PHP
Executable file

<?php
function svgicon($string) {
$arr = [
'' => ''
];
return $arr[$string];
}
?>