react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 564 B
JavaScript
import React from 'react';
export default function FunctionIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-function ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M15.6 5.29c-1.1-.1-2.07.71-2.17 1.82L13.18 10H16v2h-3l-.44 5.07a3.986 3.986 0 0 1-4.33 3.63 4.007 4.007 0 0 1-3.06-1.87l1.5-1.5c.24.74.9 1.31 1.73 1.38 1.1.1 2.07-.71 2.17-1.82L11 12H8v-2h3.17l.27-3.07c.19-2.2 2.13-3.83 4.33-3.63 1.31.11 2.41.84 3.06 1.87l-1.5 1.5c-.24-.74-.9-1.31-1.73-1.38z" />
</svg>
);
}