web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
15 lines (13 loc) • 558 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="M13.5 5l-1-1-5 5L5 6.5l-2 2L7.5 13l7-7z" style={{
lineHeight: "normal",
InkscapeFontSpecification: "Sans",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
}} color="#000" fontWeight={400} fontFamily="Sans" overflow="visible" fill="#2e3436" /></svg>;
}
export default SvgComponent;