WowPress-Tailwind/theme/wowpress/Frontend/Icon.php

14 lines
398 B
PHP
Raw Permalink Normal View History

2024-04-15 23:07:29 +02:00
<?php
namespace WoWPress\Frontend;
class Icon{
public static function get($icon_name,$width="24px"){
$fname = get_template_directory()."/vendor/blade-ui-kit/blade-heroicons/resources/svg/".$icon_name.".svg";
if(file_exists($fname)){
return "<div style='width:".$width."'>".file_get_contents($fname)."</div>";
}else{
return "";
}
}
}