import React from 'react'; interface Props { filter: any; isHorizontal?: boolean; } function FunnelStepText(props: Props) { const { filter } = props; const total = filter.value.length; const additionalStyle = props.isHorizontal ? { whiteSpace: 'nowrap', maxWidth: 210, textOverflow: 'ellipsis', overflow: 'hidden' } : {}; return (