@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 863 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowLeft = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 48 48"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M44.25 24c0 .83-.67 1.5-1.5 1.5H10.91l12.4 12.18a1.5 1.5 0 1 1-2.11 2.14l-15-14.75a.61.61 0 0 1-.02-.02 1.5 1.5 0 0 1 .04-2.14L21.2 8.18a1.5 1.5 0 1 1 2.1 2.14L10.91 22.5h31.84c.83 0 1.5.67 1.5 1.5Z"
}));
});
ArrowLeft.displayName = 'ArrowLeft';
export var ArrowLeftDimensions = {
height: 48,
width: 48
};