styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.25 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.ArrowRightOutline = 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: "M12 21c-.801 0-1.555-.312-2.121-.879S8.999 18.8 9 17.998c0-.746.271-.998.764-1.998H4.928c-1.654 0-3-1.347-3-3 0-1.654 1.346-3 3-3h4.836C9.27 9 9 8.745 9 7.999a2.979 2.979 0 01.88-2.121c1.132-1.132 3.108-1.133 4.241.001L21.242 13l-7.121 7.121A2.978 2.978 0 0112 21zm-7.072-9a1.001 1.001 0 000 2h9.658l-3.293 3.293a.99.99 0 00-.293.706c0 .269.104.519.293.708a1.023 1.023 0 001.414 0L18.414 13l-5.707-5.707a1.023 1.023 0 00-1.414 0 .99.99 0 00-.293.706c0 .268.104.519.293.708L14.586 12H4.928z", key: "k0" })));
});
exports.ArrowRightOutline.displayName = 'ArrowRightOutline';
exports.ArrowRightOutlineDimensions = { height: 24, width: 24 };