@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 960 B
JavaScript
import * as React from "react";
function RightIndent01Icon({
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 4H3m18 16H3m9-10.75H3m9 5.5H3m16.72-6.29l-3.867 2.9c-.29.217-.434.326-.486.459a.5.5 0 000 .362c.052.133.197.242.486.459l3.867 2.9c.412.309.618.463.79.46a.5.5 0 00.384-.192c.106-.136.106-.393.106-.908V9.1c0-.515 0-.772-.106-.908A.5.5 0 0020.51 8c-.172-.003-.378.151-.79.46z"
}));
}
const ForwardRef = React.forwardRef(RightIndent01Icon);
export default ForwardRef;