@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.09 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const LandingIcon = ({
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.46 8.327-.198-1.1c-.155-.859-1.235-1.137-1.763-.455q-.133.171-.184.383l-.933 3.895m14.305 6.604-8.584-1.223a1.27 1.27 0 0 0-.892.206l-5.875 3.977a.64.64 0 0 1-.995-.477l-.335-3.564c-.045-.473.17-.932.558-1.198l11.92-8.156c.255-.174.44-.435.52-.736l.526-1.966c.153-.572.735-.91 1.3-.755.28.076.515.265.654.521L20.1 7.28a1.31 1.31 0 0 1-.34 1.647l-3.704 2.906c-.806.632-.594 1.918.371 2.252l3.794 1.313c.96.332 1.057 1.669.154 2.14a1.14 1.14 0 0 1-.688.117Z"
}));
const ForwardRef = forwardRef(LandingIcon);
module.exports = ForwardRef;