@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
38 lines • 1.04 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const Icon4K = ({
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("rect", {
width: 18,
height: 18,
x: 3,
y: 3,
rx: 4.5
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M10.667 14.064H6L9.457 8.5v7",
opacity: 0.4
}), /*#__PURE__*/React.createElement("g", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.5,
opacity: 0.4
}, /*#__PURE__*/React.createElement("path", {
d: "M12.666 8.5v7M16.944 8.5l-4.278 5.056M14.61 11.611l2.722 3.889"
})));
const ForwardRef = forwardRef(Icon4K);
module.exports = ForwardRef;