import React from 'react';
export default function ShareIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-share ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M21 12l-7-7v4C7 10 4 15 3 20c2.5-3.5 6-5.1 11-5.1V19l7-7z" />
</svg>
);
}