web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
11 lines (9 loc) • 642 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="M8 4h6v2H8zm0 5.984h6v2H8z" style={{
marker: "none"
}} color="#bebebe" overflow="visible" /><path d="M2.384 3h3.231A.38.38 0 016 3.379V6.62a.38.38 0 01-.385.38h-3.23A.38.38 0 012 6.621V3.38A.38.38 0 012.384 3zm0 6h3.231A.38.38 0 016 9.379V12.6a.38.38 0 01-.385.38h-3.23A.38.38 0 012 12.6V9.38A.38.38 0 012.384 9z" style={{
marker: "none"
}} color="#000" overflow="visible" /></g></svg>;
}
export default SvgComponent;