styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 922 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.DirectionLeft = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M21.707 11.294l-8.978-9a1.001 1.001 0 00-1.415-.002l-9.021 9a1 1 0 000 1.416l9.021 9c.39.389 1.026.388 1.415-.002l8.978-9a.998.998 0 000-1.412zM15 16h-2v-4h-3v2l-3-3 3-3v2h5v6z", key: "k0" })));
});
exports.DirectionLeft.displayName = 'DirectionLeft';
exports.DirectionLeftDimensions = { height: 24, width: 24 };
;