react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 502 B
JavaScript
import React from 'react';
export default function TextureIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-texture ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M9.29 21h2.83L21 12.12V9.29M19 21c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4M5 3a2 2 0 0 0-2 2v2l4-4m4.88 0L3 11.88v2.83L14.71 3m4.79.08L3.08 19.5c.09.35.27.66.51.91.25.24.56.42.91.51L20.93 4.5c-.19-.7-.73-1.24-1.43-1.42z" />
</svg>
);
}