<div class="driver-card-mini" ...attributes>
    <div class="relative flex">
        <img src={{@driver.photo_url}} alt={{@driver.name}} class="w-6 h-6 mx-2 rounded-md" />
        <a href="javascript:;" class="relative block cursor-pointer" {{on "click" (fn this.viewDriver @driver)}}>
            <div class="font-semibold">{{@driver.name}}</div>
            {{#if @showCoordinates}}
                <div>{{format-point @driver.location}}</div>
            {{/if}}
        </a>
        <FaIcon @icon="circle" class="absolute left-0 top-0 {{if @driver.online 'text-green-500' 'text-yellow-200'}}" />
    </div>
</div>