UNPKG

@astraicons/react

Version:

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

33 lines 1.03 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", 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: 20, height: 16, x: 2, y: 4, rx: 4.5 }), /*#__PURE__*/React.createElement("g", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, opacity: 0.4 }, /*#__PURE__*/React.createElement("path", { d: "M5 9.5v3.889c0 .614.497 1.111 1.111 1.111h1.111c.614 0 1.111-.498 1.111-1.111V9.5M10.334 9.5v5M13.668 9.5v5M13.667 12h-3.333M15.668 14.5v-5h2.222c.614 0 1.111.497 1.111 1.111v2.778c0 .614-.497 1.111-1.11 1.111z" }))); const ForwardRef = forwardRef(UhdIcon); export default ForwardRef;