@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.39 kB
JavaScript
import * as React from "react";
function VideoSlashIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M15.33 4.735C14.335 3.757 14.002 4 12.5 4h-5A5.5 5.5 0 0 0 2 9.5v5c0 1.503 0 1.5.8 2.765L9.063 11zM4.78 19.28c.802.458 1.73.719 2.72.719h5a5.5 5.5 0 0 0 5.5-5.5v-5c0-.99-.261-1.918-.719-2.72l-8.47 8.47H10a.75.75 0 0 1 0 1.5H7.31zM7.5 8.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M21.769 16.464c0 1.288-1.174 2.002-1.964 1.194l-1.933-1.971.023-.11.074-.49L18 14V9.5l-.034-.616-.073-.467L19.27 6.5c.79-.808 2.5-.252 2.5 1.036z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M16.806 4.194a.66.66 0 0 1 0 .936L3.13 18.806a.662.662 0 1 1-.936-.936l3.496-3.496L9.064 11l6.806-6.806a.66.66 0 0 1 .936 0",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(VideoSlashIcon);
export default ForwardRef;