I have this star component:
@props(['fill' => 1, 'bgColor' => 'grey', 'fgColor' => 'yellow'])
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" {{ $attributes->merge(['class'=>'']) }} viewBox="0 0 47.94 47.94">
<defs>
<linearGradient id="grad">
<stop offset="{{ $fill * 100 }}%" stop-color="{{ $fgColor }}"/>
<stop offset="{{ $fill * 100 }}%" stop-color="{{ $bgColor }}"/>
</linearGradient>
</defs>
<path fill="url(#grad)" d="M26.285,2.486l5.407,10.956c0.376,0.762,1.103,1.29,1.944,1.412l12.091,1.757
c2.118,0.308,2.963,2.91,1.431,4.403l-8.749,8.528c-0.608,0.593-0.886,1.448-0.742,2.285l2.065,12.042
c0.362,2.109-1.852,3.717-3.746,2.722l-10.814-5.685c-0.752-0.395-1.651-0.395-2.403,0l-10.814,5.685
c-1.894,0.996-4.108-0.613-3.746-2.722l2.065-12.042c0.144-0.837-0.134-1.692-0.742-2.285l-8.749-8.528
c-1.532-1.494-0.687-4.096,1.431-4.403l12.091-1.757c0.841-0.122,1.568-0.65,1.944-1.412l5.407-10.956
C22.602,0.567,25.338,0.567,26.285,2.486z"/>
</svg>
and I am using the compnent in this place:
<div class="flex items-center justify-center gap-2 w-full">
<x-star fill="0.7" fg-color="red" class="h-8"/>
<x-star fill="1" fg-color="red" class="h-8"/>
<x-star fill="1" fg-color="red" class="h-8"/>
<x-star fill="1" fg-color="red" class="h-8"/>
<x-star fill="1" fg-color="red" class="h-8"/>
</div>
I expect each star to use the values I put in when I instantiate, but all the stars takes the value of the first star