react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 521 B
JavaScript
import React from 'react';
export default function GlassWineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-glass-wine ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M15.5 21.27l-.84-.09c-.76-.07-1.41-.58-1.66-1.31a11.52 11.52 0 0 1 0-6c2.32-.47 4-2.5 4-4.87 0-2-2-7-2-7H9S7 7 7 9a5 5 0 0 0 4 4.9c.53 1.96.53 4.04 0 6-.24.72-.88 1.23-1.63 1.31l-.87.09s-.5-.02-.5.7h8c0-.72-.5-.73-.5-.73M9.44 7l1-3h3.12l1 3H9.44z" />
</svg>
);
}