react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 609 B
JavaScript
import React from 'react';
export default function HikingIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-hiking ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3a7.3 7.3 0 0 0 4.65 2.45L16 23h1l3-14-.96-.2-.46 2.2c-1.72-.15-3.14-1.11-3.88-2.4l-1-1.6c-.2-.35-.5-.63-.86-.8-.34-.2-.76-.24-1.16-.2-.4.09-.76.27-1.05.55-.29.28-.49.64-.57 1.03L9.8 8.9M7.08 6.92l2.32.46-1 5.08L6.08 12l1-5.08M13.5 5.5a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2z" />
</svg>
);
}