web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
7 lines (5 loc) • 442 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 1C1.338 1 0 2.338 0 4v7c0 1.662 1.338 3 3 3h10c1.662 0 3-1.338 3-3V4c0-1.662-1.338-3-3-3zm0 2h10c.554 0 1 .446 1 1v7c0 .554-.446 1-1 1H3c-.554 0-1-.446-1-1V4c0-.554.446-1 1-1zm5 13c3 0 4-1 4-1H4s1 1 4 1z" fill="#474747" /></svg>;
}
export default SvgComponent;