Files
starter-kit/vendor/blade-ui-kit/blade-icons/src/helpers.php
T
2025-06-13 10:48:20 -10:00

14 lines
272 B
PHP

<?php
declare(strict_types=1);
use BladeUI\Icons\Factory;
use BladeUI\Icons\Svg;
if (! function_exists('svg')) {
function svg(string $name, $class = '', array $attributes = []): Svg
{
return app(Factory::class)->svg($name, $class, $attributes);
}
}