styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 1.05 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var ArrowForwardOutline = 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: "M4 19.999a.999.999 0 01-1-1v-1a9.98 9.98 0 018-9.796V6.499c0-.534.208-1.036.585-1.414.756-.757 2.075-.756 2.829-.001l6.288 6.203a.996.996 0 010 1.424l-6.293 6.207c-.746.746-2.067.751-2.823-.005A1.986 1.986 0 0111 17.499v-1.437c-2.495.201-4.523.985-6.164 3.484a1 1 0 01-.836.453zm8-5.989l1-.01v3.499l5.576-5.5L13 6.503V10s-.384-.004-.891.052a7.982 7.982 0 00-6.892 6.08C7.338 14.404 9.768 14.066 12 14.01z", key: "k0" })));
});
ArrowForwardOutline.displayName = 'ArrowForwardOutline';
export var ArrowForwardOutlineDimensions = { height: 24, width: 24 };