Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions src/pages/Home/components/ShelterListView/ShelterListView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,25 @@ const ShelterListView = React.forwardRef<HTMLDivElement, IShelterListViewProps>(
</Button>
)}
</div>
<div>
<p>
<strong>Legenda dos itens para doação</strong>
</p>
<ul>
<li className="flex gap-2 items-center">
<div className="w-4 h-4 rounded-md bg-light-red"></div>
Necessita urgente
</li>
<li className="flex gap-2 items-center">
<div className="w-4 h-4 rounded-md bg-light-orange"></div>
Precisa
</li>
<li className="flex gap-2 items-center">
<div className="w-4 h-4 rounded-md bg-light-green"></div>
Disponível para doação
</li>
</ul>
</div>
<main ref={ref} className="flex flex-col gap-4" {...rest}>
{loading ? (
<LoadingSkeleton amountItems={4} />
Expand Down