Renders a navigation that sticks to the bottom of the screen.
<.bottom_navigation current_value={@view}>
<:item
label="Profile"
navigate={~p"/pets/#{@pet}"}
value={Profile}
>
<Lucideicons.user aria-hidden="true" />
</:item>
<:item
label="Appointments"
navigate={~p"/pets/#{@pet}/appointments"}
value={Appointments}
>
<Lucideicons.calendar_days aria-hidden="true" />
</:item>
<:item
label="Messages"
navigate={~p"/pets/#{@pet}/messages"}
value={Messages}
>
<Lucideicons.mails aria-hidden="true" />
</:item>
</.bottom_navigation>