styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 745 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var ArrowLeft = 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 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M17 11H9.414l2.293-2.293a.999.999 0 10-1.414-1.414L5.586 12l4.707 4.707a.997.997 0 001.414 0 .999.999 0 000-1.414L9.414 13H17a1 1 0 000-2z", key: "k0" })));
});
ArrowLeft.displayName = 'ArrowLeft';
export var ArrowLeftDimensions = { height: 24, width: 24 };