blowfish/node_modules/@heroicons/react/20/solid/ChevronLeftIcon.js

25 lines
764 B
JavaScript
Raw Normal View History

2023-01-29 16:30:24 -06:00
const React = require("react");
function ChevronLeftIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M12.79 5.23a.75.75 0 01-.02 1.06L8.832 10l3.938 3.71a.75.75 0 11-1.04 1.08l-4.5-4.25a.75.75 0 010-1.08l4.5-4.25a.75.75 0 011.06.02z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(ChevronLeftIcon);
module.exports = ForwardRef;