mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
36 lines
945 B
JavaScript
36 lines
945 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Typography from '../../ui/typography/typography';
|
|
import { COLORS, TYPOGRAPHY } from '../../../helpers/constants/design-system';
|
|
|
|
export default function TransactionTotalBanner({
|
|
total = '',
|
|
detail = '',
|
|
timing,
|
|
}) {
|
|
return (
|
|
<div className="transaction-total-banner">
|
|
<Typography color={COLORS.BLACK} variant={TYPOGRAPHY.H1}>
|
|
{total}
|
|
</Typography>
|
|
{detail && (
|
|
<Typography
|
|
color={COLORS.BLACK}
|
|
variant={TYPOGRAPHY.H6}
|
|
className="transaction-total-banner__detail"
|
|
>
|
|
{detail}
|
|
</Typography>
|
|
)}
|
|
{timing}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
TransactionTotalBanner.propTypes = {
|
|
total: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
|
|
detail: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
|
|
timing: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
|
|
};
|