In a Laravel component, you can specify default classes and merge them with extra classes that get passed in, something like this:
<a {{ $attributes->merge(['class' => 'text-white']) }}>{{ $slot }}</a>
But what if I want to remove that "text-white" class? How can I pass in a list of classes to exclude from the component?