web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
7 lines (5 loc) • 495 B
JavaScript
import * as React from "react";
function SvgComponent(props) {
return <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="1em" height="1em" {...props}><path d="M7.852 6h3.693l-4.338 6.241 1.672.174-4.184 3.578 1.964-1.036c.318.038 1.01.064 1.337.064A7.005 7.005 0 0015 8.015c-.016-2.468-1.28-5.007-4.003-6.33l.16-1.676zM1 8.015a6.99 6.99 0 003.581 6.114l.319-3.72 1.01 1.206L7.715 8H4l3.16-6.934A6.999 6.999 0 001 8.016" fill="#474747" /></svg>;
}
export default SvgComponent;