web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
7 lines (5 loc) • 383 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="M2.469 1C1.648 1 1 1.648 1 2.469V13.53c0 .822.648 1.47 1.469 1.47h9.062c.821 0 1.469-.648 1.469-1.469V2.47C13 1.648 12.352 1 11.531 1zM2 2h10v11H2z" fill="#474747" /></svg>;
}
export default SvgComponent;