UNPKG

@astraicons/react

Version:

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

36 lines 989 B
const React = require("react"); const { forwardRef } = require("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("rect", { width: 14, height: 16, x: 3, y: 4, strokeLinecap: "round", rx: 4.5 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", 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" }), /*#__PURE__*/React.createElement("circle", { cx: 7.5, cy: 9.5, r: 1.5, strokeLinecap: "round" })); const ForwardRef = forwardRef(VideoIcon); module.exports = ForwardRef;