import React from 'react';
export default function MoonWaningCrescentIcon(props) {
return (
<svg
viewBox="0 0 24 24"
{...props}
className={`rmi rmi-moon-waning-crescent ${props.className}`}
>
<path d="M2 12a10 10 0 0 0 13 9.54 10 10 0 0 1 0-19.08A10 10 0 0 0 2 12z" />
</svg>
);
}