web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
11 lines (9 loc) • 574 B
JavaScript
import * as React from "react";
function SvgComponent(props) {
return <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16.003" width="1em" height="1em" {...props}><path d="M8 0a5 5 0 00-5 5c0 .173.014.332.031.5.014.167.036.336.063.5C3.666 9.514 6 12.003 8 14.003c2-2 4.334-4.489 4.906-8.003.027-.164.05-.333.063-.5.017-.168.031-.327.031-.5a5 5 0 00-5-5zm0 3a2 2 0 110 4 2 2 0 010-4z" style={{
isolation: "auto",
mixBlendMode: "normal",
marker: "none"
}} color="#000" overflow="visible" fill="#474747" /></svg>;
}
export default SvgComponent;