Files
calorie-counter/frontend/src/lib/components/Energy/FoodSearchEntry.svelte

14 lines
331 B
Svelte

<script lang="ts">
export let itemLabel: string;
export let highlighted: boolean;
</script>
<li
class="list-none px-4 py-3 cursor-pointer bg-gray-800 text-gray-200 text-base border-b border-gray-700 transition-colors"
class:bg-blue-600={highlighted}
class:text-white={highlighted}
on:click
>
{itemLabel}
</li>