Skip to content

Commit

Permalink
feat: add outlined videoCam icon (#2750)
Browse files Browse the repository at this point in the history
  • Loading branch information
KristinAoki authored Oct 26, 2023
1 parent 2747ac1 commit 47e4379
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 0 deletions.
13 changes: 13 additions & 0 deletions icons/es5/VideocamOutlined.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
function _extends() { _extends = Object.assign ? Object.assign.bind() : 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";
const SvgVideocamOutlined = props => /*#__PURE__*/React.createElement("svg", _extends({
width: 24,
height: 24,
viewBox: "0 0 24 24",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M15 8v8H5V8h10Zm1-2H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1Z",
fill: "currentColor"
}));
export default SvgVideocamOutlined;
1 change: 1 addition & 0 deletions icons/es5/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2183,6 +2183,7 @@ export { default as VideoStable } from "./VideoStable";
export { default as VideoTranscript } from "./VideoTranscript";
export { default as Videocam } from "./Videocam";
export { default as VideocamOff } from "./VideocamOff";
export { default as VideocamOutlined } from "./VideocamOutlined";
export { default as VideogameAsset } from "./VideogameAsset";
export { default as VideogameAssetOff } from "./VideogameAssetOff";
export { default as ViewAgenda } from "./ViewAgenda";
Expand Down
17 changes: 17 additions & 0 deletions icons/jsx/VideocamOutlined.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as React from "react";
const SvgVideocamOutlined = (props) => (
<svg
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M15 8v8H5V8h10Zm1-2H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1Z"
fill="currentColor"
/>
</svg>
);
export default SvgVideocamOutlined;
1 change: 1 addition & 0 deletions icons/jsx/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2183,6 +2183,7 @@ export { default as VideoStable } from "./VideoStable";
export { default as VideoTranscript } from "./VideoTranscript";
export { default as Videocam } from "./Videocam";
export { default as VideocamOff } from "./VideocamOff";
export { default as VideocamOutlined } from "./VideocamOutlined";
export { default as VideogameAsset } from "./VideogameAsset";
export { default as VideogameAssetOff } from "./VideogameAssetOff";
export { default as ViewAgenda } from "./ViewAgenda";
Expand Down
3 changes: 3 additions & 0 deletions icons/svg/videocam_outlined.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 47e4379

Please sign in to comment.