UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

20 lines 1.2 kB
import * as React from "react"; import { forwardRef } from "react"; const UhdIcon = ({ 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: "M17.5 4A4.5 4.5 0 0 1 22 8.5v7a4.5 4.5 0 0 1-4.5 4.5h-11A4.5 4.5 0 0 1 2 15.5v-7A4.5 4.5 0 0 1 6.5 4zM8.333 8.75a.75.75 0 0 0-.75.75v3.889c0 .199-.161.36-.36.361H6.11a.36.36 0 0 1-.361-.361V9.5a.75.75 0 0 0-1.5 0v3.889c0 1.027.833 1.861 1.861 1.861h1.112c1.027 0 1.86-.834 1.86-1.861V9.5a.75.75 0 0 0-.75-.75m5.334 0a.75.75 0 0 0-.75.75v1.75h-1.835V9.5a.75.75 0 0 0-1.5 0v5a.75.75 0 0 0 1.5 0v-1.75h1.835v1.75a.75.75 0 0 0 1.5 0v-5a.75.75 0 0 0-.75-.75m2 0a.75.75 0 0 0-.75.75v5c0 .414.336.75.75.75h2.223a1.86 1.86 0 0 0 1.861-1.861V10.61A1.86 1.86 0 0 0 17.89 8.75zm2.223 1.5c.199 0 .361.162.361.361v2.778c0 .2-.162.36-.361.361h-1.473v-3.5z" })); const ForwardRef = forwardRef(UhdIcon); export default ForwardRef;