@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.4 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const VideoSlashIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M20.25 7.536c0-.42-.188-.658-.325-.742a.25.25 0 0 0-.16-.043c-.034.004-.103.023-.193.116L17.75 8.73v6.538l1.823 1.865.064.057a.3.3 0 0 0 .13.058.25.25 0 0 0 .159-.043c.137-.083.325-.321.325-.742zm1.5 8.928c0 .867-.399 1.63-1.046 2.024-.684.416-1.56.353-2.204-.306l-1.016-1.037A5.25 5.25 0 0 1 12.5 20.75h-5a5.2 5.2 0 0 1-1.75-.299.75.75 0 1 1 .5-1.414c.39.138.81.213 1.25.213h5a3.75 3.75 0 0 0 3.75-3.75v-7q0-.026.002-.052a.75.75 0 0 1 .213-.548L18.5 5.818c.644-.659 1.52-.721 2.204-.305.647.394 1.046 1.156 1.046 2.023zM19.624 2.472a.75.75 0 0 0-1.06-.004l-2.346 2.327A5.23 5.23 0 0 0 12.5 3.25h-5A5.25 5.25 0 0 0 2.25 8.5v7c0 .913.234 1.772.644 2.52l-1.422 1.414a.751.751 0 0 0 1.056 1.065L19.62 3.533a.75.75 0 0 0 .004-1.061M7.5 11.75a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(VideoSlashIcon);
export default ForwardRef;