react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 402 B
JavaScript
import React from 'react';
export default function LayersOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-layers-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 18.54l7.37-5.74L21 14.07l-9 7-9-7 1.62-1.26L12 18.54M12 16L3 9l9-7 9 7-9 7m0-11.47L6.26 9 12 13.47 17.74 9 12 4.53z" />
</svg>
);
}