import React from 'react';
export default function CallReceivedIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-call-received ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41" />
</svg>
);
}