musae 1.0.27-beta.2 → 1.0.27-beta.4
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.cjs +22 -0
- package/dist/components/icon/icons/content/add.d.ts +3 -0
- package/dist/components/icon/icons/content/add.mjs +18 -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/index.cjs +4 -0
- package/dist/components/icon/icons/content/index.d.ts +3 -1
- package/dist/components/icon/icons/content/index.mjs +2 -0
- package/dist/components/icon/icons/content/remove.cjs +22 -0
- package/dist/components/icon/icons/content/remove.d.ts +3 -0
- package/dist/components/icon/icons/content/remove.mjs +18 -0
- package/dist/components/icon/icons/index.cjs +4 -0
- package/dist/components/icon/icons/index.mjs +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var React = require('react');
|
|
6
|
+
var hoc = require('../../hoc.cjs');
|
|
7
|
+
|
|
8
|
+
var Add = hoc.withIcon(function (_ref) {
|
|
9
|
+
var size = _ref.size;
|
|
10
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12
|
+
width: size,
|
|
13
|
+
height: size,
|
|
14
|
+
viewBox: "0 0 14 14",
|
|
15
|
+
fill: "none"
|
|
16
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "M14 8H8V14H6V8H0V6H6V0H8V6H14V8Z",
|
|
18
|
+
fill: "currentColor"
|
|
19
|
+
}));
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
exports.default = Add;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
|
+
|
|
4
|
+
var Add = withIcon(function (_ref) {
|
|
5
|
+
var size = _ref.size;
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
|
+
viewBox: "0 0 14 14",
|
|
11
|
+
fill: "none"
|
|
12
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
13
|
+
d: "M14 8H8V14H6V8H0V6H6V0H8V6H14V8Z",
|
|
14
|
+
fill: "currentColor"
|
|
15
|
+
}));
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
export { Add as default };
|
|
@@ -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 };
|
|
@@ -5,6 +5,8 @@ var redo = require('./redo.cjs');
|
|
|
5
5
|
var undo = require('./undo.cjs');
|
|
6
6
|
var linkOff = require('./link-off.cjs');
|
|
7
7
|
var fontDownload = require('./font-download.cjs');
|
|
8
|
+
var remove = require('./remove.cjs');
|
|
9
|
+
var add = require('./add.cjs');
|
|
8
10
|
|
|
9
11
|
|
|
10
12
|
|
|
@@ -13,3 +15,5 @@ exports.Redo = redo.default;
|
|
|
13
15
|
exports.Undo = undo.default;
|
|
14
16
|
exports.LinkOff = linkOff.default;
|
|
15
17
|
exports.FontDownload = fontDownload.default;
|
|
18
|
+
exports.Remove = remove.default;
|
|
19
|
+
exports.Add = add.default;
|
|
@@ -3,4 +3,6 @@ import Redo from "./redo";
|
|
|
3
3
|
import Undo from "./undo";
|
|
4
4
|
import LinkOff from "./link-off";
|
|
5
5
|
import FontDownload from "./font-download";
|
|
6
|
-
|
|
6
|
+
import Remove from "./remove";
|
|
7
|
+
import Add from "./add";
|
|
8
|
+
export { Clear, Redo, Undo, LinkOff, FontDownload, Remove, Add };
|
|
@@ -3,3 +3,5 @@ export { default as Redo } from './redo.mjs';
|
|
|
3
3
|
export { default as Undo } from './undo.mjs';
|
|
4
4
|
export { default as LinkOff } from './link-off.mjs';
|
|
5
5
|
export { default as FontDownload } from './font-download.mjs';
|
|
6
|
+
export { default as Remove } from './remove.mjs';
|
|
7
|
+
export { default as Add } from './add.mjs';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var React = require('react');
|
|
6
|
+
var hoc = require('../../hoc.cjs');
|
|
7
|
+
|
|
8
|
+
var Remove = hoc.withIcon(function (_ref) {
|
|
9
|
+
var size = _ref.size;
|
|
10
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12
|
+
width: size,
|
|
13
|
+
height: size,
|
|
14
|
+
viewBox: "0 0 24 24",
|
|
15
|
+
fill: "none"
|
|
16
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "M19 13H5V11H19V13Z",
|
|
18
|
+
fill: "currentColor"
|
|
19
|
+
}));
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
exports.default = Remove;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { withIcon } from '../../hoc.mjs';
|
|
3
|
+
|
|
4
|
+
var Remove = withIcon(function (_ref) {
|
|
5
|
+
var size = _ref.size;
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
|
+
viewBox: "0 0 24 24",
|
|
11
|
+
fill: "none"
|
|
12
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
13
|
+
d: "M19 13H5V11H19V13Z",
|
|
14
|
+
fill: "currentColor"
|
|
15
|
+
}));
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
export { Remove as default };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var accountCircle = require('./action/account-circle.cjs');
|
|
4
|
+
var add = require('./content/add.cjs');
|
|
4
5
|
var addAlert = require('./alert/add-alert.cjs');
|
|
5
6
|
var attchFile = require('./editor/attch-file.cjs');
|
|
6
7
|
var autoDelete = require('./alert/auto-delete.cjs');
|
|
@@ -52,6 +53,7 @@ var notificationImportant = require('./alert/notification-important.cjs');
|
|
|
52
53
|
var openInNew = require('./action/open-in-new.cjs');
|
|
53
54
|
var preview = require('./action/preview.cjs');
|
|
54
55
|
var redo = require('./content/redo.cjs');
|
|
56
|
+
var remove = require('./content/remove.cjs');
|
|
55
57
|
var rocketLaunch = require('./action/rocket-launch.cjs');
|
|
56
58
|
var rotateLeft = require('./image/rotate-left.cjs');
|
|
57
59
|
var rotateRight = require('./image/rotate-right.cjs');
|
|
@@ -81,6 +83,7 @@ var zoomOut = require('./action/zoom-out.cjs');
|
|
|
81
83
|
|
|
82
84
|
|
|
83
85
|
exports.AccountCircle = accountCircle.default;
|
|
86
|
+
exports.Add = add.default;
|
|
84
87
|
exports.AddAlert = addAlert.default;
|
|
85
88
|
exports.AttachFile = attchFile.default;
|
|
86
89
|
exports.AutoDelete = autoDelete.default;
|
|
@@ -132,6 +135,7 @@ exports.NotificationImportant = notificationImportant.default;
|
|
|
132
135
|
exports.OpenInNew = openInNew.default;
|
|
133
136
|
exports.Preview = preview.default;
|
|
134
137
|
exports.Redo = redo.default;
|
|
138
|
+
exports.Remove = remove.default;
|
|
135
139
|
exports.RocketLaunch = rocketLaunch.default;
|
|
136
140
|
exports.RotateLeft = rotateLeft.default;
|
|
137
141
|
exports.RotateRight = rotateRight.default;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as AccountCircle } from './action/account-circle.mjs';
|
|
2
|
+
export { default as Add } from './content/add.mjs';
|
|
2
3
|
export { default as AddAlert } from './alert/add-alert.mjs';
|
|
3
4
|
export { default as AttachFile } from './editor/attch-file.mjs';
|
|
4
5
|
export { default as AutoDelete } from './alert/auto-delete.mjs';
|
|
@@ -50,6 +51,7 @@ export { default as NotificationImportant } from './alert/notification-important
|
|
|
50
51
|
export { default as OpenInNew } from './action/open-in-new.mjs';
|
|
51
52
|
export { default as Preview } from './action/preview.mjs';
|
|
52
53
|
export { default as Redo } from './content/redo.mjs';
|
|
54
|
+
export { default as Remove } from './content/remove.mjs';
|
|
53
55
|
export { default as RocketLaunch } from './action/rocket-launch.mjs';
|
|
54
56
|
export { default as RotateLeft } from './image/rotate-left.mjs';
|
|
55
57
|
export { default as RotateRight } from './image/rotate-right.mjs';
|