styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 759 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var ArrowUpLeft2 = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M13.707 12.293L5.414 4H9a1 1 0 000-2H3a1.002 1.002 0 00-1 1h-.001v6a1 1 0 002 0V5.414l8.293 8.293a.997.997 0 001.414 0 .999.999 0 000-1.414z", key: "k0" })));
});
ArrowUpLeft2.displayName = 'ArrowUpLeft2';
export var ArrowUpLeft2Dimensions = { height: 16, width: 16 };