@scaleflex/icons
Version:
SVG icons as React components
25 lines • 1.08 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size", "ref"];
import React from 'react';
export var Video2 = function Video2(_ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
ref = _ref.ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Video2",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M38.2 7.00012L42.6 15.8001H36L31.6 7.00012H27.2L31.6 15.8001H25L20.6 7.00012H16.2L20.6 15.8001H14L9.6 7.00012H7.4C4.98 7.00012 3 8.98012 3 11.4001V37.8001C3 40.2201 4.98 42.2001 7.4 42.2001H42.6C45.02 42.2001 47 40.2201 47 37.8001V7.00012H38.2Z",
fill: color
}));
};
export default Video2;