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