@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
35 lines • 974 B
JavaScript
import * as React from "react";
function VideoIcon({
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("rect", {
width: 16,
height: 16,
x: 2,
y: 4,
rx: 5.5
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "m18 8.424 2.036-2.082C20.826 5.534 22 6.248 22 7.536v8.928c0 1.288-1.174 2.002-1.964 1.194L18 15.576M10 16H7"
}), /*#__PURE__*/React.createElement("circle", {
cx: 7.5,
cy: 9.5,
r: 1.5
}));
}
const ForwardRef = React.forwardRef(VideoIcon);
export default ForwardRef;