@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.07 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",
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: "M16.5 2.25c2.9 0 5.25 2.35 5.25 5.25v9c0 2.9-2.35 5.25-5.25 5.25h-9a5.25 5.25 0 0 1-5.25-5.25v-9c0-2.9 2.35-5.25 5.25-5.25zM9.662 7.78a.75.75 0 0 0-.843.325L5.363 13.67A.752.752 0 0 0 6 14.815h2.707v.686a.75.75 0 0 0 1.5 0v-.686h.46a.75.75 0 0 0 0-1.5h-.46V8.501a.75.75 0 0 0-.545-.722m3.004-.03a.75.75 0 0 0-.75.75v7a.75.75 0 0 0 1.5 0v-1.67l1.002-1.184 2.299 3.285a.751.751 0 0 0 1.23-.86l-2.527-3.61 2.097-2.476a.75.75 0 0 0-1.146-.968l-2.955 3.492V8.5a.75.75 0 0 0-.75-.75m-3.959 5.565H7.349l1.358-2.187z"
}));
const ForwardRef = forwardRef(Icon4K);
module.exports = ForwardRef;