metadata-based-explorer1
Version:
Box UI Elements
21 lines (18 loc) • 981 B
JavaScript
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import * as React from 'react';
import IconFileBase from './IconFileBase';
var IconFileVideo = function IconFileVideo(props) {
return React.createElement(IconFileBase, _extends({}, props, {
baseClassName: "icon-file-video"
}), React.createElement("path", {
d: "M25 27H7V5h13l5 5v17z",
fill: "#fff"
}), React.createElement("path", {
d: "M20 4H7a1 1 0 0 0-1 1v22a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V9.89zm5 23H7V5h13v4a1 1 0 0 0 1 1h4z",
fill: "#22a7f0"
}), React.createElement("path", {
d: "M12.43 21.8c-.24.13-.43 0-.43-.27v-8c0-.28.2-.4.43-.27l7.14 4a.25.25 0 0 1 0 .48z",
fill: "#22a7f0"
}));
};
export default IconFileVideo;