web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
15 lines (13 loc) • 764 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}><g fill="#474747"><path d="M2 2c-.524 0-1 .476-1 1v10c0 .524.476 1 1 1h3v-2s-1.993-.021-2 0V4h11v8h-1v2h2c.52 0 1-.435 1-1V3c0-.467-.437-1-1-1z" style={{
lineHeight: "normal",
InkscapeFontSpecification: "Sans",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
}} color="#000" fontWeight={400} fontFamily="Sans" overflow="visible" /><path d="M12 8.063a3 3 0 01-6 0 3 3 0 116 0z" /><path d="M8 9l-2 7h1l2-2 2 2h1l-2-7" fillRule="evenodd" /></g></svg>;
}
export default SvgComponent;