UNPKG

@nomercyicons/react

Version:
26 lines 970 B
const React = require("react"); function SwitchRightRoundedIcon({ 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("path", { fill: "none", d: "M24 24H0V0h24z" }), /*#__PURE__*/React.createElement("path", { d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38m4.79-2.67a.996.996 0 000-1.41L15.7 6.71c-.62-.63-1.7-.19-1.7.7v9.17c0 .89 1.08 1.34 1.71.71l4.58-4.58zM10 16.59V7.41c0-.89-1.08-1.34-1.71-.71L3.7 11.29a.996.996 0 000 1.41l4.59 4.59c.63.63 1.71.19 1.71-.7z" })); } const ForwardRef = React.forwardRef(SwitchRightRoundedIcon); module.exports = ForwardRef;