@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
31 lines • 953 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: "none",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.8,
d: "M22 7.5 16 12l6 4.5v-9Z"
}), /*#__PURE__*/React.createElement("path", {
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.8,
d: "M14 5.5H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconVideo);
module.exports = ForwardRef;