UNPKG

@astraicons/react

Version:

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

39 lines 1.34 kB
const React = require("react"); const { forwardRef } = require("react"); const VideoSlashIcon = ({ 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("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", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M16.998 8.5v7a4.5 4.5 0 0 1-4.5 4.5h-5c-.526 0-1.03-.09-1.5-.256" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m19.092 3-2.92 2.898M2 19.966l1.849-1.835M16.172 5.898A4.5 4.5 0 0 0 12.5 4h-5A4.5 4.5 0 0 0 3 8.5v7c0 .982.315 1.891.849 2.631M16.172 5.898 3.85 18.131", opacity: 0.4 })); const ForwardRef = forwardRef(VideoSlashIcon); module.exports = ForwardRef;