Files
daragt-coupon/resources/views/components/icon.blade.php
2026-05-19 20:11:21 +05:00

17 lines
436 B
PHP

@props(['name', 'class' => ''])
@php
$path = public_path("icons/{$name}.svg");
if (! is_file($path)) {
throw new InvalidArgumentException("Icon [{$name}] not found.");
}
$svg = file_get_contents($path);
$svg = preg_replace('/<svg\b/', '<svg class="w-full h-full"', $svg, 1);
@endphp
<span {{ $attributes->merge(['class' => 'inline-flex shrink-0 '.$class]) }} aria-hidden="true">
{!! $svg !!}
</span>