UNPKG

@astraicons/react

Version:

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

38 lines 1.4 kB
const React = require("react"); function VideoSlashIcon({ title, titleId, ...props }, svgRef) { return /*#__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: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m18.05 8.61 2.01-2.049C20.84 5.766 22 6.47 22 7.736v8.784c0 1.268-1.16 1.97-1.94 1.175l-2.01-2.048" }), /*#__PURE__*/React.createElement("ellipse", { cx: 7.688, cy: 9.669, strokeWidth: 1.5, rx: 1.481, ry: 1.476 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M10.155 16.064H8.674M17.299 4 2.169 19.417M17.299 4 2.169 19.417" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M3.284 17.756a5.38 5.38 0 0 1-1.026-3.167V9.67c0-2.988 2.43-5.411 5.429-5.411h4.935c1.22 0 2.347.401 3.254 1.079M5.419 19.507c.69.317 1.458.494 2.268.494h4.935c2.999 0 5.43-2.423 5.43-5.412V9.67c0-.891-.217-1.733-.6-2.474" })); } const ForwardRef = React.forwardRef(VideoSlashIcon); module.exports = ForwardRef;