web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
9 lines (7 loc) • 416 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 1a3 3 0 100 6 3 3 0 000-6zM6.5 8A4.49 4.49 0 002 12.5V14c0 1 1 1 1 1h10s1 0 1-1v-1.5A4.49 4.49 0 009.5 8z" style={{
marker: "none"
}} color="#bebebe" overflow="visible" fill="#2e3436" /></svg>;
}
export default SvgComponent;