import React from 'react';
export default function EllipseIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-ellipse ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 4C6.5 4 2 7.58 2 12s4.5 8 10 8 10-3.58 10-8-4.5-8-10-8z" />
</svg>
);
}