react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 362 B
JavaScript
import React from 'react';
export default function EggIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-egg ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M19.5 14.5A7.5 7.5 0 0 1 12 22a7.5 7.5 0 0 1-7.5-7.5C4.5 10.36 7.86 2 12 2c4.14 0 7.5 8.36 7.5 12.5z" />
</svg>
);
}