react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 562 B
JavaScript
import React from 'react';
export default function EmoticonExcitedIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-emoticon-excited ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10a10 10 0 0 0 10-10c0-5.53-4.5-10-10-10M8.88 7.82L11 9.94 9.94 11 8.88 9.94 7.82 11 6.76 9.94l2.12-2.12M12 17.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5m4.18-6.5l-1.06-1.06L14.06 11 13 9.94l2.12-2.12 2.12 2.12L16.18 11z" />
</svg>
);
}