@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.13 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const Share1Icon = ({
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: "M14.197 5.145a7.734 7.734 0 0 1 5.23 9.553M9.838 5.132A7.734 7.734 0 0 0 4.783 15.35M7.715 19a7.73 7.73 0 0 0 8.854-.205M7.715 19a8 8 0 0 1-.801-.612zm8.854-.205q.243-.178.473-.376zm2.858-4.097a8 8 0 0 1-.331.926z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M13.414 3.586a2 2 0 1 1-2.828 2.828 2 2 0 0 1 2.828-2.828M7.414 15.586a2 2 0 1 1-2.828 2.828 2 2 0 0 1 2.828-2.828M19.414 15.586a2 2 0 1 1-2.828 2.828 2 2 0 0 1 2.828-2.828"
}));
const ForwardRef = forwardRef(Share1Icon);
module.exports = ForwardRef;