@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.02 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const HdIcon = ({
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.25zm-5.332 5.5a.75.75 0 0 0-.75.75v2.75H7.25V8.5a.75.75 0 0 0-1.5 0v7a.75.75 0 0 0 1.5 0v-2.75h3.168v2.75a.75.75 0 0 0 1.5 0v-7a.75.75 0 0 0-.75-.75m1.999 0a.75.75 0 0 0-.75.75v7c0 .414.336.75.75.75h3.111a2.306 2.306 0 0 0 2.306-2.306v-3.888a2.306 2.306 0 0 0-2.306-2.306zm3.111 1.5c.445 0 .806.36.806.806v3.888c0 .445-.36.806-.806.806h-2.361v-5.5z"
}));
const ForwardRef = forwardRef(HdIcon);
export default ForwardRef;