Sobre o abrigo
- } label={formatAddress} />
+ } label={formatAddress} onClick={openGoogleMaps} iconTwo={} className={cn('cursor-pointer')}/>
{Boolean(shelter.city) && (
- } label="Cidade:" value={shelter.city} />
+ } label="Cidade:" value={shelter.city} iconTwo={<>>} />
)}
{Boolean(shelter.zipCode) && (
- } label="CEP:" value={shelter.zipCode} />
+ } label="CEP:" value={shelter.zipCode} iconTwo={<>>}/>
)}
}
@@ -50,6 +59,7 @@ const CardAboutShelter = (props: ICardAboutShelter) => {
Não informado se aceita animais
)
}
+ iconTwo={<>>}
/>
}
@@ -59,6 +69,7 @@ const CardAboutShelter = (props: ICardAboutShelter) => {
? `${shelter.shelteredPeople} pessoas`
: 'Não informado'
}
+ iconTwo={<>>}
/>
}
@@ -68,6 +79,7 @@ const CardAboutShelter = (props: ICardAboutShelter) => {
? `${shelter.capacity} pessoas`
: 'Não informado'
}
+ iconTwo={<>>}
/>
}
@@ -76,12 +88,14 @@ const CardAboutShelter = (props: ICardAboutShelter) => {
check(shelter.contact) ? `${shelter.contact}` : 'Não informado'
}
clipboardButton={check(shelter.contact)}
+ iconTwo={<>>}
/>
}
label="Chave Pix:"
value={check(shelter.pix) ? `${shelter.pix}` : 'Não informado'}
clipboardButton={check(shelter.pix)}
+ iconTwo={<>>}
/>
diff --git a/src/components/CardAboutShelter/components/InfoRow/InfoRow.tsx b/src/components/CardAboutShelter/components/InfoRow/InfoRow.tsx
index da5007a2..62e9bad0 100644
--- a/src/components/CardAboutShelter/components/InfoRow/InfoRow.tsx
+++ b/src/components/CardAboutShelter/components/InfoRow/InfoRow.tsx
@@ -10,6 +10,7 @@ const InfoRow = React.forwardRef