@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.41 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const TakeOffIcon = ({
title,
titleId,
...props
}, ref) => /*#__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: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m8.354 7.461-1.07-.296C6.45 6.933 6.27 5.83 6.99 5.362a1 1 0 0 1 .394-.149l3.93-.585M16.58 19.51l-.452-8.687a1.28 1.28 0 0 1 .283-.872l4.447-5.516a.644.644 0 0 0-.384-1.036l-3.491-.654a1.29 1.29 0 0 0-1.233.451L6.64 14.381c-.194.239-.469.4-.772.453l-1.99.35a1.06 1.06 0 0 0-.403 1.932l2.818 1.881c.525.352 1.227.27 1.656-.192l3.198-3.442c.696-.749 1.948-.423 2.193.572l.963 3.907c.244.99 1.555 1.206 2.1.346.127-.202.19-.439.177-.677Z",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M20.857 4.436a.644.644 0 0 0-.384-1.036l-3.491-.654a1.29 1.29 0 0 0-1.233.451L6.64 14.381c-.194.239-.469.4-.772.453l-1.99.35a1.06 1.06 0 0 0-.403 1.932l2.818 1.881c.525.352 1.227.27 1.656-.192l3.198-3.442c.696-.749 1.948-.423 2.193.572l.963 3.907"
}));
const ForwardRef = forwardRef(TakeOffIcon);
module.exports = ForwardRef;