musae 1.0.27-beta.2 → 1.0.27-beta.3
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.
- package/dist/components/icon/icons/content/add.d.ts +3 -0
- package/dist/components/icon/icons/content/clear.cjs +2 -2
- package/dist/components/icon/icons/content/clear.d.ts +2 -2
- package/dist/components/icon/icons/content/clear.mjs +2 -2
- package/dist/components/icon/icons/content/remove.d.ts +3 -0
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var React = require('react');
|
|
6
6
|
var hoc = require('../../hoc.cjs');
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var Clear = hoc.withIcon(function (_ref) {
|
|
9
9
|
var size = _ref.size;
|
|
10
10
|
return /*#__PURE__*/React.createElement("svg", {
|
|
11
11
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -19,4 +19,4 @@ var Redo = hoc.withIcon(function (_ref) {
|
|
|
19
19
|
}));
|
|
20
20
|
});
|
|
21
21
|
|
|
22
|
-
exports.default =
|
|
22
|
+
exports.default = Clear;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
declare const
|
|
3
|
-
export default
|
|
2
|
+
declare const Clear: (props: Omit<import("../../../../types/icon").IconProps, "as">) => React.FunctionComponentElement<import("../../../../types/icon").IconProps>;
|
|
3
|
+
export default Clear;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { withIcon } from '../../hoc.mjs';
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var Clear = withIcon(function (_ref) {
|
|
5
5
|
var size = _ref.size;
|
|
6
6
|
return /*#__PURE__*/React.createElement("svg", {
|
|
7
7
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -15,4 +15,4 @@ var Redo = withIcon(function (_ref) {
|
|
|
15
15
|
}));
|
|
16
16
|
});
|
|
17
17
|
|
|
18
|
-
export {
|
|
18
|
+
export { Clear as default };
|