web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
17 lines (15 loc) • 850 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 color="#000" fill="#2e3436"><path d="M7 1v7.563L5.719 7.28A1.015 1.015 0 005 7H4v1c0 .265.093.53.281.719l3 3 .282.281h.875l.28-.281 3-3A1.01 1.01 0 0012 8V7h-1c-.265 0-.53.093-.719.281L9 8.563V1z" style={{
lineHeight: "normal",
InkscapeFontSpecification: "'Bitstream Vera Sans'",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
}} fontWeight={400} fontFamily="Bitstream Vera Sans" overflow="visible" /><path d="M1.994 13L2 15h12l-.006-2z" style={{
marker: "none"
}} overflow="visible" fillRule="evenodd" /></g></svg>;
}
export default SvgComponent;