import type { FunctionComponent } from 'react'; import React from 'react'; import { RemoveButton } from '../RemoveButton'; import styles from './styles.scss'; type SelectedRecipientItemProps = { phoneNumber: string; name?: string; title?: string; onRemove: (...args: any[]) => any; isWarning?: boolean; }; export const SelectedRecipientItem: FunctionComponent< SelectedRecipientItemProps > = ({ phoneNumber, isWarning = false, name = phoneNumber, title = name, onRemove, }) => { let className = phoneNumber.length > 5 ? styles.phoneNumber : styles.extension; if (isWarning) className = styles.warningRecipient; return (
  • {name}
  • ); };