@heroicons/react
Version:
17 lines (15 loc) • 522 B
JavaScript
const React = require("react");
function ArrowsExpandIcon(props) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 19 20",
fill: "currentColor"
}, props), /*#__PURE__*/React.createElement("path", {
stroke: "#374151",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2,
d: "M3 8V4m0 0h4M3 4l4 4m8 0V4m0 0h-4m4 0l-4 4m-8 4v4m0 0h4m-4 0l4-4m8 4l-4-4m4 4v-4m0 4h-4"
}));
}
module.exports = ArrowsExpandIcon;