web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
9 lines (7 loc) • 514 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 15c-.72 0-1.83-4.151-2.34-4.66C5.151 9.83 1 8.72 1 8c0-.72 4.151-1.83 4.66-2.34C6.17 5.151 7.28 1 8 1c.72 0 1.83 4.151 2.34 4.66C10.849 6.17 15 7.28 15 8c0 .72-4.151 1.83-4.66 2.34C9.83 10.849 8.72 15 8 15z" style={{
marker: "none"
}} color="#000" overflow="visible" fill="#474747" /></svg>;
}
export default SvgComponent;