react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 422 B
JavaScript
import React from 'react';
export default function IceCreamIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-ice-cream ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 2c2.21 0 4 1.79 4 4.05a2.5 2.5 0 0 1 2 2.45 2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 6 8.5c0-1.21.86-2.22 2-2.5a4 4 0 0 1 4-4M9 12h6l-2 10h-2L9 12z" />
</svg>
);
}