Given the following anonymous blade component tag:
<x-nav.nav-ribbon-link icon="home" bg="foo" svgicon="{!! $workspace->icon !!}" fill="none" href="{{ route('dashboard') }}" viewBox="24 24" strokeWidth=2 page="Dashboard" :active="request()->is('dashboard')" />
the component:
`@props(['active','svgicon','href','page','bg','icon'])
<div class="">
{{ $icon }}
</div>
`
The icon and bg variables result in an Undefined variable error. Note that the 'svgicon' variable actually needed to be escaped to work as well.