@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.01 kB
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",
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", {
d: "M7.5 8.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M7.5 4A5.5 5.5 0 0 0 2 9.5v5A5.5 5.5 0 0 0 7.5 20h5a5.5 5.5 0 0 0 5.239-3.82l1.806 1.478c.987.808 2.455.094 2.455-1.194V7.536c0-1.288-1.468-2.002-2.455-1.194L17.74 7.82A5.5 5.5 0 0 0 12.5 4zM7 15.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5zM5.25 9.5a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(VideoIcon);
export default ForwardRef;