@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.21 kB
JavaScript
import * as React from "react";
function FastBackwardIcon({
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: "M22 16.437c0 1.13 0 1.695-.229 1.972a1 1 0 01-.809.363c-.358-.013-.78-.388-1.625-1.14l-4.992-4.436c-.465-.414-.698-.62-.784-.865a1 1 0 010-.662c.086-.245.319-.451.784-.865l4.992-4.437c.844-.75 1.267-1.126 1.625-1.14a1 1 0 01.81.364c.228.277.228.842.228 1.972v8.874zM11 16.437c0 1.13 0 1.695-.229 1.972a1 1 0 01-.809.363c-.358-.013-.78-.388-1.625-1.14l-4.992-4.436c-.465-.414-.698-.62-.784-.865a1 1 0 010-.662c.086-.245.319-.451.784-.865l4.992-4.437c.844-.75 1.267-1.126 1.625-1.14a1 1 0 01.81.364c.228.277.228.842.228 1.972v8.874z"
}));
}
const ForwardRef = React.forwardRef(FastBackwardIcon);
export default ForwardRef;