react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 453 B
JavaScript
import React from 'react';
export default function CreationIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-creation ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M19 1l-1.26 2.75L15 5l2.74 1.26L19 9l1.25-2.74L23 5l-2.75-1.25M9 4L6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5M19 15l-1.26 2.74L15 19l2.74 1.25L19 23l1.25-2.75L23 19l-2.75-1.26" />
</svg>
);
}