@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.13 kB
JavaScript
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",
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: "M21.75 16.464c0 .867-.399 1.63-1.046 2.023-.684.416-1.56.354-2.204-.305l-1.015-1.037A5.25 5.25 0 0 1 12.5 20.75h-5a5.25 5.25 0 0 1-5.25-5.25v-7c0-2.9 2.35-5.25 5.25-5.25h5a5.25 5.25 0 0 1 4.985 3.604L18.5 5.817c.644-.658 1.52-.72 2.204-.304.647.393 1.046 1.156 1.046 2.023zm-1.825-9.67c.137.084.325.321.325.742v8.928c0 .42-.188.659-.325.742a.25.25 0 0 1-.16.043.3.3 0 0 1-.13-.059l-.063-.056-1.822-1.864V8.73l1.822-1.864c.09-.092.159-.11.194-.115a.25.25 0 0 1 .159.043M7.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(VideoIcon);
module.exports = ForwardRef;