<div class="picker">
    <departures :stops="stops"/>

    <ul class="picker__stops list-underlined">
        <li v-for="stop in stops" :key="stop.id" class="d-flex align-items-center">
            <button @click="remove(stop)" class="btn btn-action">
                <fa :icon="['fal', 'times']" />
            </button>
            <stop :stop="stop" class="flex-grow-1"></stop>
        </li>
    </ul>

    <stop-finder @select="add" :blacklist="stops"/>
</div>