UNPKG

@astraicons/react

Version:

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

44 lines 1.27 kB
import * as React from "react"; import { forwardRef } from "react"; const VideoIcon = ({ 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("g", { strokeLinecap: "round", strokeWidth: 1.5, clipPath: "url(#clip0_12219_12240)" }, /*#__PURE__*/React.createElement("rect", { width: 14, height: 16, x: 3, y: 4, rx: 4.5 }), /*#__PURE__*/React.createElement("path", { strokeLinejoin: "round", d: "m17 8.424 2.036-2.082C19.826 5.534 21 6.248 21 7.536v8.928c0 1.288-1.174 2.002-1.964 1.194L17 15.576", opacity: 0.4 }), /*#__PURE__*/React.createElement("circle", { cx: 7.5, cy: 9.5, r: 1.5, opacity: 0.4 })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", { id: "clip0_12219_12240" }, /*#__PURE__*/React.createElement("path", { fill: "#fff", d: "M0 0h24v24H0z" })))); const ForwardRef = forwardRef(VideoIcon); export default ForwardRef;