styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.1 kB
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.ArrowMinimise = 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: "M6.121 13a1 1 0 100 2h1.465l-3.293 3.293a.999.999 0 101.414 1.414l3.414-3.414V18c0 .552.447 1 1 1s.879-.448.879-1v-5H6.121zM7 11a1 1 0 001-1V8h2a1 1 0 100-2H6.001L6 10a1 1 0 001 1zm10 2a1 1 0 00-1 1v2h-2a1 1 0 100 2h4v-4a1 1 0 00-1-1zm1.293-8.707L15 7.586V6a1 1 0 10-2 0v5h5a1 1 0 000-2h-1.586l3.293-3.292c.391-.391.391-1.023 0-1.414s-1.023-.392-1.414-.001z", key: "k0" })));
});
exports.ArrowMinimise.displayName = 'ArrowMinimise';
exports.ArrowMinimiseDimensions = { height: 24, width: 24 };
;