UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 843 B
const React = require("react"); function ArrowBlockRightIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M21 12l-7-7v4H3.8c-.28 0-.42 0-.527.055a.5.5 0 00-.219.218C3 9.38 3 9.52 3 9.8v4.4c0 .28 0 .42.054.527a.5.5 0 00.219.218C3.38 15 3.52 15 3.8 15H14v4l7-7z" })); } const ForwardRef = React.forwardRef(ArrowBlockRightIcon); module.exports = ForwardRef;