web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
9 lines (7 loc) • 344 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="M3 3h10v2H3zm0 4h10v2H3zm0 4h10v2H3z" style={{
marker: "none"
}} overflow="visible" color="#bebebe" fill="#474747" /></svg>;
}
export default SvgComponent;