@props([
'name',
'size' => 24,
'color' => 'currentColor',
'stroke' => null,
])
@php
$fillIcons = ['facebook', 'instagram', 'tiktok', 'search', 'bag'];
$svgStroke = $stroke ?? (in_array($name, $fillIcons) ? 'none' : $color);
@endphp
@php
$icons = [
'search' => '',
'bag' => '',
'close' => '',
'arrow-left' => '',
'arrow-right' => '',
'arrow-up' => '',
'arrow-down' => '',
'facebook' => '',
'tiktok' => '',
'instagram' => '',
];
$path = $icons[$name] ?? '';
@endphp
@if($path)
@endif