UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 801 B
import * as React from "react"; function LetterSpacing01Icon({ 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: "M9 13h6m-8 4l4.272-9.398c.231-.509.347-.763.507-.842a.5.5 0 01.442 0c.16.079.276.333.507.842L17 17m4-14v18M3 3v18" })); } const ForwardRef = React.forwardRef(LetterSpacing01Icon); export default ForwardRef;