@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
34 lines • 1.39 kB
JavaScript
const React = require("react");
function FieldIconSort({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
clipPath: "url(#a)"
}, /*#__PURE__*/React.createElement("path", {
d: "M6.567 3.26a.76.76 0 0 0-1.522 0v16.335L3.314 17.77a.762.762 0 0 0-1.076-.029.76.76 0 0 0-.03 1.075l2.17 2.286c.788.831 2.19.274 2.19-.871V3.26Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M9.567 6.554a.76.76 0 1 0 0 1.52h11.672a.76.76 0 1 0 0-1.52H9.567Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M9.567 11.621a.76.76 0 1 0 0 1.52h8.373a.76.76 0 1 0 0-1.52H9.567Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M8.806 17.448c0-.42.34-.76.761-.76h6.343a.76.76 0 1 1 0 1.52H9.567a.76.76 0 0 1-.761-.76Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconSort);
module.exports = ForwardRef;