diff --git a/src/components/CardAboutShelter/CardAboutShelter.tsx b/src/components/CardAboutShelter/CardAboutShelter.tsx
index 4ac61065..3f53fa6a 100644
--- a/src/components/CardAboutShelter/CardAboutShelter.tsx
+++ b/src/components/CardAboutShelter/CardAboutShelter.tsx
@@ -28,17 +28,17 @@ const CardAboutShelter = (props: ICardAboutShelter) => {
} label={shelter.address} />
}
- label="Capacidade do abrigo:"
+ icon={}
+ label="Pessoas abrigadas:"
value={
- check(shelter.capacity)
- ? `${shelter.capacity} pessoas`
+ check(shelter.shelteredPeople)
+ ? `${shelter.shelteredPeople} pessoas`
: 'Não informado'
}
/>
}
- label="Pessoas abrigadas:"
+ icon={}
+ label="Capacidade do abrigo:"
value={
check(shelter.capacity)
? `${shelter.capacity} pessoas`
diff --git a/src/components/CardAboutShelter/components/InfoRow/InfoRow.tsx b/src/components/CardAboutShelter/components/InfoRow/InfoRow.tsx
index 4f204cd3..db0fdbf3 100644
--- a/src/components/CardAboutShelter/components/InfoRow/InfoRow.tsx
+++ b/src/components/CardAboutShelter/components/InfoRow/InfoRow.tsx
@@ -27,7 +27,7 @@ const InfoRow = React.forwardRef(
{...rest}
>
{React.cloneElement(icon as any, {
- className: 'min-w-5 min-h-5 w-5 h-5',
+ className: 'min-w-5 min-h-5 w-5 h-5 stroke-muted-foreground',
})}
{label}