@nomercyicons/react
Version:
31 lines • 1.2 kB
JavaScript
import * as React from "react";
function KeyboardDoubleArrowRightRoundedIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
fill: "none"
}, /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
})), /*#__PURE__*/React.createElement("path", {
d: "M5.7 6.71a.996.996 0 000 1.41L9.58 12 5.7 15.88a.996.996 0 101.41 1.41l4.59-4.59a.996.996 0 000-1.41L7.12 6.71c-.39-.39-1.03-.39-1.42 0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M12.29 6.71a.996.996 0 000 1.41L16.17 12l-3.88 3.88a.996.996 0 101.41 1.41l4.59-4.59a.996.996 0 000-1.41L13.7 6.7c-.38-.38-1.02-.38-1.41.01z"
}));
}
const ForwardRef = React.forwardRef(KeyboardDoubleArrowRightRoundedIcon);
export default ForwardRef;