fixed credit card icon (#14678)

This commit is contained in:
Peer Richelsen
2024-04-20 14:46:23 +01:00
committed by GitHub
parent a15cad4d03
commit df95ec4ce8
@@ -168,7 +168,14 @@ export const EventDetails = ({ event, blocks = defaultEventDetailsBlocks }: Even
if (event.price <= 0 || paymentAppData.price <= 0) return null;
return (
<EventMetaBlock key={block} customIcon={<PriceIcon currency={event.currency} />}>
<EventMetaBlock
key={block}
customIcon={
<PriceIcon
className="relative z-20 mr-2 mt-[2px] h-4 w-4 flex-shrink-0 rtl:ml-2"
currency={event.currency}
/>
}>
<Price
price={paymentAppData.price}
currency={event.currency}