@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
21 lines • 993 B
JavaScript
const React = require("react");
function FieldIconVideo({
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",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M15.75 10.399V7.464C15.75 6.044 14.517 5 13.133 5H3.617C2.233 5 1 6.044 1 7.464v9.072C1 17.956 2.233 19 3.617 19h9.516c1.384 0 2.617-1.044 2.617-2.464V13.6l5.02 3.975A.75.75 0 0 0 22 17V7a.75.75 0 0 0-1.23-.576l-5.02 3.975ZM2.5 7.464c0-.473.439-.964 1.117-.964h9.516c.679 0 1.117.49 1.117.964v9.072c0 .473-.438.964-1.117.964H3.617c-.678 0-1.117-.49-1.117-.964V7.464Zm18 7.935L16.172 12 20.5 8.601V15.4Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconVideo);
module.exports = ForwardRef;