web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
7 lines (5 loc) • 347 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="M8 1a7 7 0 107 7c0-.741-.118-1.452-.331-2.122l-7.166 7.166-4.5-4.5 2-2 2.5 2.5 5.707-5.707A6.973 6.973 0 008 1z" fill="#2e3436" /></svg>;
}
export default SvgComponent;