react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 473 B
JavaScript
import React from 'react';
export default function TreeIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-tree ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M11 21v-4.26c-.47.17-.97.26-1.5.26C7 17 5 15 5 12.5c0-1.27.5-2.41 1.36-3.23C6.13 8.73 6 8.13 6 7.5 6 5 8 3 10.5 3c1.56 0 2.94.8 3.75 2h.25a5.5 5.5 0 0 1 5.5 5.5 5.5 5.5 0 0 1-5.5 5.5c-.5 0-1-.07-1.5-.21V21h-2z" />
</svg>
);
}