@openedx/paragon 21.5.7 → 21.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
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); }
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
const SvgVideocamOutlined = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
4
|
+
width: 24,
|
|
5
|
+
height: 24,
|
|
6
|
+
viewBox: "0 0 24 24",
|
|
7
|
+
fill: "none",
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
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",
|
|
11
|
+
fill: "currentColor"
|
|
12
|
+
}));
|
|
13
|
+
export default SvgVideocamOutlined;
|
package/icons/es5/index.js
CHANGED
|
@@ -2183,6 +2183,7 @@ export { default as VideoStable } from "./VideoStable";
|
|
|
2183
2183
|
export { default as VideoTranscript } from "./VideoTranscript";
|
|
2184
2184
|
export { default as Videocam } from "./Videocam";
|
|
2185
2185
|
export { default as VideocamOff } from "./VideocamOff";
|
|
2186
|
+
export { default as VideocamOutlined } from "./VideocamOutlined";
|
|
2186
2187
|
export { default as VideogameAsset } from "./VideogameAsset";
|
|
2187
2188
|
export { default as VideogameAssetOff } from "./VideogameAssetOff";
|
|
2188
2189
|
export { default as ViewAgenda } from "./ViewAgenda";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const SvgVideocamOutlined = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
width={24}
|
|
5
|
+
height={24}
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
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"
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
);
|
|
17
|
+
export default SvgVideocamOutlined;
|
package/icons/jsx/index.jsx
CHANGED
|
@@ -2183,6 +2183,7 @@ export { default as VideoStable } from "./VideoStable";
|
|
|
2183
2183
|
export { default as VideoTranscript } from "./VideoTranscript";
|
|
2184
2184
|
export { default as Videocam } from "./Videocam";
|
|
2185
2185
|
export { default as VideocamOff } from "./VideocamOff";
|
|
2186
|
+
export { default as VideocamOutlined } from "./VideocamOutlined";
|
|
2186
2187
|
export { default as VideogameAsset } from "./VideogameAsset";
|
|
2187
2188
|
export { default as VideogameAssetOff } from "./VideogameAssetOff";
|
|
2188
2189
|
export { default as ViewAgenda } from "./ViewAgenda";
|