diff --git a/src/components/transactions/TxSummary/index.tsx b/src/components/transactions/TxSummary/index.tsx index 3763d60fb8..1b786f7e42 100644 --- a/src/components/transactions/TxSummary/index.tsx +++ b/src/components/transactions/TxSummary/index.tsx @@ -1,3 +1,4 @@ +import TxProposalChip from '@/features/proposers/components/TxProposalChip' import StatusLabel from '@/features/swap/components/StatusLabel' import useIsExpiredSwap from '@/features/swap/hooks/useIsExpiredSwap' import { Box } from '@mui/material' @@ -74,10 +75,14 @@ const TxSummary = ({ item, isConflictGroup, isBulkGroup }: TxSummaryProps): Reac {isQueue && executionInfo && ( - + {executionInfo.confirmationsSubmitted > 0 ? ( + + ) : ( + + )} )} diff --git a/src/features/proposers/components/TxProposalChip.tsx b/src/features/proposers/components/TxProposalChip.tsx new file mode 100644 index 0000000000..ee77076164 --- /dev/null +++ b/src/features/proposers/components/TxProposalChip.tsx @@ -0,0 +1,32 @@ +import { Chip, SvgIcon, Tooltip, Typography } from '@mui/material' +import InfoIcon from '@/public/images/notifications/info.svg' + +const TxProposalChip = () => { + return ( + + + + + + Proposal + + + } + /> + + + ) +} + +export default TxProposalChip