import React from 'react';
import { Icon } from 'UI';
import { numberWithCommas } from 'App/utils';
const style = { content: '\f10d', fontSize: '100px', color: 'rgba(0,0,0,0.1)' };
function FunnelOverview({ funnel }) {
return (
{numberWithCommas(funnel.affectedUsers)}
{' '}
users
{' '}
who had this experience show a conversion impact of
{funnel.conversionImpact}
%
{' '}
between
{funnel.firstStage}
{' '}
and
{funnel.lastStage}
{' '}
leading to an estimated
{numberWithCommas(funnel.totalDropDueToIssues)}
{' '}
lost conversions.
);
}
export default FunnelOverview;