styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 1.12 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var ArrowLeftOutline = 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: "M10.928 21a2.978 2.978 0 01-2.121-.879L1.686 13l7.121-7.121c1.133-1.134 3.109-1.134 4.242 0 .566.564.879 1.317.879 2.119 0 .746-.27 1.451-.764 2.002H18c1.654 0 3 1.346 3 3s-1.346 3-3 3h-4.836c.493.549.764 1.252.764 1.998a2.977 2.977 0 01-.879 2.124 2.983 2.983 0 01-2.121.878zm-6.414-8l5.707 5.707a1.023 1.023 0 001.414 0c.189-.189.293-.441.293-.708s-.104-.517-.291-.705L8.342 14H18a1.001 1.001 0 000-2H8.342l3.293-3.293a.996.996 0 00.001-1.413 1.023 1.023 0 00-1.415-.001L4.514 13z", key: "k0" })));
});
ArrowLeftOutline.displayName = 'ArrowLeftOutline';
export var ArrowLeftOutlineDimensions = { height: 24, width: 24 };