box-ui-elements
Version:
Box UI Elements
22 lines • 601 B
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
const IconPageForward = ({
className = '',
color = '#000000',
height = 13,
title,
width = 8
}) => /*#__PURE__*/React.createElement(AccessibleSVG, {
className: `icon-page-forward ${className}`,
height: height,
title: title,
viewBox: "0 0 8 13",
width: width
}, /*#__PURE__*/React.createElement("path", {
className: "fill-color",
d: "M.1 11.3l4.6-4.5L.1 2.2 1.5.8l6 6-6 6-1.4-1.5z",
fill: color,
fillRule: "evenodd"
}));
export default IconPageForward;
//# sourceMappingURL=IconPageForward.js.map