@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.18 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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M17.457 3.258a1.88 1.88 0 0 0-1.89.337l-9.608 8.287a.38.38 0 0 1-.249.092H3.935a1.685 1.685 0 0 0-1.166 2.9l2.147 2.059a1.88 1.88 0 0 0 2.435.143l3.298-2.49a.38.38 0 0 1 .608.279l.23 3.527c.102 1.554 2.017 2.226 3.066 1.076.246-.27.403-.609.448-.971l.95-7.584a.38.38 0 0 1 .128-.24l4.7-4.094c.75-.654.53-1.873-.402-2.223zM11.987 5.475a.74.74 0 0 0 .763-.73.76.76 0 0 0-.736-.77l-3.491-.093a1.6 1.6 0 0 0-.675.127c-1.289.546-1.317 2.366-.045 2.973l.88.42c.375.179.821.02.997-.354a.756.756 0 0 0-.362-1l-.88-.42a.12.12 0 0 1-.056-.048.14.14 0 0 1-.018-.072q.002-.044.02-.07a.12.12 0 0 1 .058-.046.1.1 0 0 1 .053-.01z"
}));
const ForwardRef = forwardRef(TakeOffIcon);
module.exports = ForwardRef;