UNPKG

react-material-icon-svg

Version:
16 lines (14 loc) 542 B
import React from 'react'; export default function BoneIcon(props) { return ( <svg width="24" height="24" {...props} className={`rmi rmi-bone ${props.className}`} viewBox="0 0 24 24" > <path d="M8 14a3 3 0 0 1-3 3 3 3 0 0 1-3-3c0-.77.29-1.47.76-2-.47-.53-.76-1.23-.76-2a3 3 0 0 1 3-3 3 3 0 0 1 3 3c1.33.08 2.67.17 4 .17s2.67-.09 4-.17a3 3 0 0 1 3-3 3 3 0 0 1 3 3c0 .77-.29 1.47-.76 2 .47.53.76 1.23.76 2a3 3 0 0 1-3 3 3 3 0 0 1-3-3c-1.33-.08-2.67-.17-4-.17s-2.67.09-4 .17z" /> </svg> ); }