import React from 'react'; import styles from './styles.scss'; type CallIconProps = { title?: string; iconClassName: string; }; export const CallIcon: React.FC = ({ title, iconClassName }) => (
); CallIcon.defaultProps = { title: '', };