@bubbles-ui/icons 1.0.0 → 1.0.1
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/outline/ComputerKeyboardIcon.d.ts +3 -0
- package/outline/ComputerKeyboardIcon.js +24 -0
- package/outline/ComputerKeyboardNextIcon.d.ts +3 -0
- package/outline/ComputerKeyboardNextIcon.js +27 -0
- package/{solid → outline}/ComputerKeyboardPreviousIcon.d.ts +0 -0
- package/{solid → outline}/ComputerKeyboardPreviousIcon.js +3 -2
- package/outline/ComputerKeyboardReturnIcon.d.ts +3 -0
- package/outline/ComputerKeyboardReturnIcon.js +24 -0
- package/outline/esm/ComputerKeyboardIcon.d.ts +3 -0
- package/outline/esm/ComputerKeyboardIcon.js +24 -0
- package/outline/esm/ComputerKeyboardNextIcon.d.ts +3 -0
- package/outline/esm/ComputerKeyboardNextIcon.js +27 -0
- package/{solid → outline}/esm/ComputerKeyboardPreviousIcon.d.ts +0 -0
- package/{solid → outline}/esm/ComputerKeyboardPreviousIcon.js +3 -2
- package/outline/esm/ComputerKeyboardReturnIcon.d.ts +3 -0
- package/outline/esm/ComputerKeyboardReturnIcon.js +24 -0
- package/outline/esm/index.d.ts +4 -0
- package/outline/esm/index.js +4 -0
- package/outline/index.d.ts +4 -0
- package/outline/index.js +4 -0
- package/package.json +2 -2
- package/solid/esm/index.d.ts +0 -1
- package/solid/esm/index.js +0 -1
- package/solid/index.d.ts +0 -1
- package/solid/index.js +0 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
function ComputerKeyboardIcon(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
5
|
+
fill: "none",
|
|
6
|
+
viewBox: "0 0 24 24",
|
|
7
|
+
stroke: "currentColor",
|
|
8
|
+
"aria-hidden": "true",
|
|
9
|
+
width: "1em",
|
|
10
|
+
height: "1em"
|
|
11
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
12
|
+
clipPath: "url(#a)"
|
|
13
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
fill: "#212B3D",
|
|
15
|
+
d: "M20.4 7.649H7.5v-1.2a.895.895 0 0 1 .9-.9h7.2a3.903 3.903 0 0 0 3.9-3.898 1.5 1.5 0 1 0-3 0 .898.898 0 0 1-.895.898h-7.2A3.9 3.9 0 0 0 4.5 6.444v1.2h-.9A3.6 3.6 0 0 0 0 11.249v9a3.6 3.6 0 0 0 3.6 3.6h16.8a3.6 3.6 0 0 0 3.6-3.6v-9a3.6 3.6 0 0 0-3.6-3.6Zm-16.5 12.6a1.5 1.5 0 1 1 0-2.999 1.5 1.5 0 0 1 0 2.999Zm0-6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm10.8-3a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm-5.4 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm6 9H8.7a1.5 1.5 0 1 1 0-3h6.6a1.5 1.5 0 0 1 0 3Zm4.8 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm0-6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z"
|
|
16
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
17
|
+
id: "a"
|
|
18
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
19
|
+
fill: "#fff",
|
|
20
|
+
d: "M0 0h24v24H0z"
|
|
21
|
+
}))));
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
module.exports = ComputerKeyboardIcon;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
function ComputerKeyboardNextIcon(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
5
|
+
fill: "none",
|
|
6
|
+
viewBox: "0 0 17 16",
|
|
7
|
+
stroke: "currentColor",
|
|
8
|
+
"aria-hidden": "true",
|
|
9
|
+
width: "1em",
|
|
10
|
+
height: "1em"
|
|
11
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
12
|
+
strokeLinecap: "round",
|
|
13
|
+
strokeLinejoin: "round",
|
|
14
|
+
strokeWidth: 1.6,
|
|
15
|
+
clipPath: "url(#a)"
|
|
16
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "M10.8 8H1.2M6.8 12l4-4-4-4M15.6 4v8"
|
|
18
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
19
|
+
id: "a"
|
|
20
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fill: "#fff",
|
|
22
|
+
d: "M0 0h16v16H0z",
|
|
23
|
+
transform: "translate(.4)"
|
|
24
|
+
}))));
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
module.exports = ComputerKeyboardNextIcon;
|
|
File without changes
|
|
@@ -2,13 +2,13 @@ const React = require("react");
|
|
|
2
2
|
|
|
3
3
|
function ComputerKeyboardPreviousIcon(props) {
|
|
4
4
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
5
|
+
fill: "none",
|
|
5
6
|
viewBox: "0 0 17 16",
|
|
6
|
-
|
|
7
|
+
stroke: "currentColor",
|
|
7
8
|
"aria-hidden": "true",
|
|
8
9
|
width: "1em",
|
|
9
10
|
height: "1em"
|
|
10
11
|
}, props), /*#__PURE__*/React.createElement("g", {
|
|
11
|
-
stroke: "#212B3D",
|
|
12
12
|
strokeLinecap: "round",
|
|
13
13
|
strokeLinejoin: "round",
|
|
14
14
|
strokeWidth: 1.6,
|
|
@@ -18,6 +18,7 @@ function ComputerKeyboardPreviousIcon(props) {
|
|
|
18
18
|
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
19
19
|
id: "a"
|
|
20
20
|
}, /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fill: "#fff",
|
|
21
22
|
d: "M0 0h16.4v16H0z"
|
|
22
23
|
}))));
|
|
23
24
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
function ComputerKeyboardReturnIcon(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
5
|
+
fill: "none",
|
|
6
|
+
viewBox: "0 0 16 16",
|
|
7
|
+
stroke: "currentColor",
|
|
8
|
+
"aria-hidden": "true",
|
|
9
|
+
width: "1em",
|
|
10
|
+
height: "1em"
|
|
11
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
12
|
+
clipPath: "url(#a)"
|
|
13
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
fill: "#212B3D",
|
|
15
|
+
d: "M13.198.2h-4.8a1.2 1.2 0 1 0 0 2.4h4.8a.401.401 0 0 1 .402.402v6.796a.401.401 0 0 1-.402.402h-9.1l1.15-1.152A1.2 1.2 0 0 0 3.552 7.36l-3.2 3.2a1.198 1.198 0 0 0 0 1.696l3.2 3.2a1.2 1.2 0 1 0 1.696-1.696l-1.15-1.152h9.1A2.807 2.807 0 0 0 16 9.798V3.002A2.805 2.805 0 0 0 13.198.2Z"
|
|
16
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
17
|
+
id: "a"
|
|
18
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
19
|
+
fill: "#fff",
|
|
20
|
+
d: "M0 0h16v16H0z"
|
|
21
|
+
}))));
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
module.exports = ComputerKeyboardReturnIcon;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
function ComputerKeyboardIcon(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
5
|
+
fill: "none",
|
|
6
|
+
viewBox: "0 0 24 24",
|
|
7
|
+
stroke: "currentColor",
|
|
8
|
+
"aria-hidden": "true",
|
|
9
|
+
width: "1em",
|
|
10
|
+
height: "1em"
|
|
11
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
12
|
+
clipPath: "url(#a)"
|
|
13
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
fill: "#212B3D",
|
|
15
|
+
d: "M20.4 7.649H7.5v-1.2a.895.895 0 0 1 .9-.9h7.2a3.903 3.903 0 0 0 3.9-3.898 1.5 1.5 0 1 0-3 0 .898.898 0 0 1-.895.898h-7.2A3.9 3.9 0 0 0 4.5 6.444v1.2h-.9A3.6 3.6 0 0 0 0 11.249v9a3.6 3.6 0 0 0 3.6 3.6h16.8a3.6 3.6 0 0 0 3.6-3.6v-9a3.6 3.6 0 0 0-3.6-3.6Zm-16.5 12.6a1.5 1.5 0 1 1 0-2.999 1.5 1.5 0 0 1 0 2.999Zm0-6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm10.8-3a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm-5.4 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm6 9H8.7a1.5 1.5 0 1 1 0-3h6.6a1.5 1.5 0 0 1 0 3Zm4.8 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm0-6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z"
|
|
16
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
17
|
+
id: "a"
|
|
18
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
19
|
+
fill: "#fff",
|
|
20
|
+
d: "M0 0h24v24H0z"
|
|
21
|
+
}))));
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default ComputerKeyboardIcon;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
function ComputerKeyboardNextIcon(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
5
|
+
fill: "none",
|
|
6
|
+
viewBox: "0 0 17 16",
|
|
7
|
+
stroke: "currentColor",
|
|
8
|
+
"aria-hidden": "true",
|
|
9
|
+
width: "1em",
|
|
10
|
+
height: "1em"
|
|
11
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
12
|
+
strokeLinecap: "round",
|
|
13
|
+
strokeLinejoin: "round",
|
|
14
|
+
strokeWidth: 1.6,
|
|
15
|
+
clipPath: "url(#a)"
|
|
16
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "M10.8 8H1.2M6.8 12l4-4-4-4M15.6 4v8"
|
|
18
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
19
|
+
id: "a"
|
|
20
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fill: "#fff",
|
|
22
|
+
d: "M0 0h16v16H0z",
|
|
23
|
+
transform: "translate(.4)"
|
|
24
|
+
}))));
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export default ComputerKeyboardNextIcon;
|
|
File without changes
|
|
@@ -2,13 +2,13 @@ import * as React from "react";
|
|
|
2
2
|
|
|
3
3
|
function ComputerKeyboardPreviousIcon(props) {
|
|
4
4
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
5
|
+
fill: "none",
|
|
5
6
|
viewBox: "0 0 17 16",
|
|
6
|
-
|
|
7
|
+
stroke: "currentColor",
|
|
7
8
|
"aria-hidden": "true",
|
|
8
9
|
width: "1em",
|
|
9
10
|
height: "1em"
|
|
10
11
|
}, props), /*#__PURE__*/React.createElement("g", {
|
|
11
|
-
stroke: "#212B3D",
|
|
12
12
|
strokeLinecap: "round",
|
|
13
13
|
strokeLinejoin: "round",
|
|
14
14
|
strokeWidth: 1.6,
|
|
@@ -18,6 +18,7 @@ function ComputerKeyboardPreviousIcon(props) {
|
|
|
18
18
|
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
19
19
|
id: "a"
|
|
20
20
|
}, /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fill: "#fff",
|
|
21
22
|
d: "M0 0h16.4v16H0z"
|
|
22
23
|
}))));
|
|
23
24
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
function ComputerKeyboardReturnIcon(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
5
|
+
fill: "none",
|
|
6
|
+
viewBox: "0 0 16 16",
|
|
7
|
+
stroke: "currentColor",
|
|
8
|
+
"aria-hidden": "true",
|
|
9
|
+
width: "1em",
|
|
10
|
+
height: "1em"
|
|
11
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
12
|
+
clipPath: "url(#a)"
|
|
13
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
fill: "#212B3D",
|
|
15
|
+
d: "M13.198.2h-4.8a1.2 1.2 0 1 0 0 2.4h4.8a.401.401 0 0 1 .402.402v6.796a.401.401 0 0 1-.402.402h-9.1l1.15-1.152A1.2 1.2 0 0 0 3.552 7.36l-3.2 3.2a1.198 1.198 0 0 0 0 1.696l3.2 3.2a1.2 1.2 0 1 0 1.696-1.696l-1.15-1.152h9.1A2.807 2.807 0 0 0 16 9.798V3.002A2.805 2.805 0 0 0 13.198.2Z"
|
|
16
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
17
|
+
id: "a"
|
|
18
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
19
|
+
fill: "#fff",
|
|
20
|
+
d: "M0 0h16v16H0z"
|
|
21
|
+
}))));
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default ComputerKeyboardReturnIcon;
|
package/outline/esm/index.d.ts
CHANGED
|
@@ -33,6 +33,10 @@ export { default as ChevronRightIcon } from './ChevronRightIcon'
|
|
|
33
33
|
export { default as ChevronUpIcon } from './ChevronUpIcon'
|
|
34
34
|
export { default as CloudUploadIcon } from './CloudUploadIcon'
|
|
35
35
|
export { default as CommonFileSearchIcon } from './CommonFileSearchIcon'
|
|
36
|
+
export { default as ComputerKeyboardNextIcon } from './ComputerKeyboardNextIcon'
|
|
37
|
+
export { default as ComputerKeyboardPreviousIcon } from './ComputerKeyboardPreviousIcon'
|
|
38
|
+
export { default as ComputerKeyboardReturnIcon } from './ComputerKeyboardReturnIcon'
|
|
39
|
+
export { default as ComputerKeyboardIcon } from './ComputerKeyboardIcon'
|
|
36
40
|
export { default as CursorIcon } from './CursorIcon'
|
|
37
41
|
export { default as DoneCircleIcon } from './DoneCircleIcon'
|
|
38
42
|
export { default as DoneSquareIcon } from './DoneSquareIcon'
|
package/outline/esm/index.js
CHANGED
|
@@ -33,6 +33,10 @@ export { default as ChevronRightIcon } from './ChevronRightIcon.js'
|
|
|
33
33
|
export { default as ChevronUpIcon } from './ChevronUpIcon.js'
|
|
34
34
|
export { default as CloudUploadIcon } from './CloudUploadIcon.js'
|
|
35
35
|
export { default as CommonFileSearchIcon } from './CommonFileSearchIcon.js'
|
|
36
|
+
export { default as ComputerKeyboardNextIcon } from './ComputerKeyboardNextIcon.js'
|
|
37
|
+
export { default as ComputerKeyboardPreviousIcon } from './ComputerKeyboardPreviousIcon.js'
|
|
38
|
+
export { default as ComputerKeyboardReturnIcon } from './ComputerKeyboardReturnIcon.js'
|
|
39
|
+
export { default as ComputerKeyboardIcon } from './ComputerKeyboardIcon.js'
|
|
36
40
|
export { default as CursorIcon } from './CursorIcon.js'
|
|
37
41
|
export { default as DoneCircleIcon } from './DoneCircleIcon.js'
|
|
38
42
|
export { default as DoneSquareIcon } from './DoneSquareIcon.js'
|
package/outline/index.d.ts
CHANGED
|
@@ -33,6 +33,10 @@ export { default as ChevronRightIcon } from './ChevronRightIcon'
|
|
|
33
33
|
export { default as ChevronUpIcon } from './ChevronUpIcon'
|
|
34
34
|
export { default as CloudUploadIcon } from './CloudUploadIcon'
|
|
35
35
|
export { default as CommonFileSearchIcon } from './CommonFileSearchIcon'
|
|
36
|
+
export { default as ComputerKeyboardNextIcon } from './ComputerKeyboardNextIcon'
|
|
37
|
+
export { default as ComputerKeyboardPreviousIcon } from './ComputerKeyboardPreviousIcon'
|
|
38
|
+
export { default as ComputerKeyboardReturnIcon } from './ComputerKeyboardReturnIcon'
|
|
39
|
+
export { default as ComputerKeyboardIcon } from './ComputerKeyboardIcon'
|
|
36
40
|
export { default as CursorIcon } from './CursorIcon'
|
|
37
41
|
export { default as DoneCircleIcon } from './DoneCircleIcon'
|
|
38
42
|
export { default as DoneSquareIcon } from './DoneSquareIcon'
|
package/outline/index.js
CHANGED
|
@@ -33,6 +33,10 @@ module.exports.ChevronRightIcon = require("./ChevronRightIcon.js")
|
|
|
33
33
|
module.exports.ChevronUpIcon = require("./ChevronUpIcon.js")
|
|
34
34
|
module.exports.CloudUploadIcon = require("./CloudUploadIcon.js")
|
|
35
35
|
module.exports.CommonFileSearchIcon = require("./CommonFileSearchIcon.js")
|
|
36
|
+
module.exports.ComputerKeyboardNextIcon = require("./ComputerKeyboardNextIcon.js")
|
|
37
|
+
module.exports.ComputerKeyboardPreviousIcon = require("./ComputerKeyboardPreviousIcon.js")
|
|
38
|
+
module.exports.ComputerKeyboardReturnIcon = require("./ComputerKeyboardReturnIcon.js")
|
|
39
|
+
module.exports.ComputerKeyboardIcon = require("./ComputerKeyboardIcon.js")
|
|
36
40
|
module.exports.CursorIcon = require("./CursorIcon.js")
|
|
37
41
|
module.exports.DoneCircleIcon = require("./DoneCircleIcon.js")
|
|
38
42
|
module.exports.DoneSquareIcon = require("./DoneSquareIcon.js")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bubbles-ui/icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "The Bubbles Design System icons library.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"registry": "https://registry.npmjs.org/"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
|
-
"prepublishOnly": "npm run build",
|
|
29
|
+
"prepublishOnly": "npm run build && npm version patch",
|
|
30
30
|
"build": "npm run build-outline && npm run build-solid && npm run build-react",
|
|
31
31
|
"build-react": "node ./scripts/build.js react",
|
|
32
32
|
"build-outline": "rimraf ./optimized/outline && svgo --config=svgo.outline.js -f ./src/outline -o ./optimized/outline --pretty --indent=2",
|
package/solid/esm/index.d.ts
CHANGED
|
@@ -13,7 +13,6 @@ export { default as CakeBirthdayIcon } from './CakeBirthdayIcon'
|
|
|
13
13
|
export { default as ChatTranslateIcon } from './ChatTranslateIcon'
|
|
14
14
|
export { default as CheckIcon } from './CheckIcon'
|
|
15
15
|
export { default as ComputerKeyboardNextIcon } from './ComputerKeyboardNextIcon'
|
|
16
|
-
export { default as ComputerKeyboardPreviousIcon } from './ComputerKeyboardPreviousIcon'
|
|
17
16
|
export { default as ComputerKeyboardReturnIcon } from './ComputerKeyboardReturnIcon'
|
|
18
17
|
export { default as ComputerKeyboardIcon } from './ComputerKeyboardIcon'
|
|
19
18
|
export { default as ControlsCameraOffIcon } from './ControlsCameraOffIcon'
|
package/solid/esm/index.js
CHANGED
|
@@ -13,7 +13,6 @@ export { default as CakeBirthdayIcon } from './CakeBirthdayIcon.js'
|
|
|
13
13
|
export { default as ChatTranslateIcon } from './ChatTranslateIcon.js'
|
|
14
14
|
export { default as CheckIcon } from './CheckIcon.js'
|
|
15
15
|
export { default as ComputerKeyboardNextIcon } from './ComputerKeyboardNextIcon.js'
|
|
16
|
-
export { default as ComputerKeyboardPreviousIcon } from './ComputerKeyboardPreviousIcon.js'
|
|
17
16
|
export { default as ComputerKeyboardReturnIcon } from './ComputerKeyboardReturnIcon.js'
|
|
18
17
|
export { default as ComputerKeyboardIcon } from './ComputerKeyboardIcon.js'
|
|
19
18
|
export { default as ControlsCameraOffIcon } from './ControlsCameraOffIcon.js'
|
package/solid/index.d.ts
CHANGED
|
@@ -13,7 +13,6 @@ export { default as CakeBirthdayIcon } from './CakeBirthdayIcon'
|
|
|
13
13
|
export { default as ChatTranslateIcon } from './ChatTranslateIcon'
|
|
14
14
|
export { default as CheckIcon } from './CheckIcon'
|
|
15
15
|
export { default as ComputerKeyboardNextIcon } from './ComputerKeyboardNextIcon'
|
|
16
|
-
export { default as ComputerKeyboardPreviousIcon } from './ComputerKeyboardPreviousIcon'
|
|
17
16
|
export { default as ComputerKeyboardReturnIcon } from './ComputerKeyboardReturnIcon'
|
|
18
17
|
export { default as ComputerKeyboardIcon } from './ComputerKeyboardIcon'
|
|
19
18
|
export { default as ControlsCameraOffIcon } from './ControlsCameraOffIcon'
|
package/solid/index.js
CHANGED
|
@@ -13,7 +13,6 @@ module.exports.CakeBirthdayIcon = require("./CakeBirthdayIcon.js")
|
|
|
13
13
|
module.exports.ChatTranslateIcon = require("./ChatTranslateIcon.js")
|
|
14
14
|
module.exports.CheckIcon = require("./CheckIcon.js")
|
|
15
15
|
module.exports.ComputerKeyboardNextIcon = require("./ComputerKeyboardNextIcon.js")
|
|
16
|
-
module.exports.ComputerKeyboardPreviousIcon = require("./ComputerKeyboardPreviousIcon.js")
|
|
17
16
|
module.exports.ComputerKeyboardReturnIcon = require("./ComputerKeyboardReturnIcon.js")
|
|
18
17
|
module.exports.ComputerKeyboardIcon = require("./ComputerKeyboardIcon.js")
|
|
19
18
|
module.exports.ControlsCameraOffIcon = require("./ControlsCameraOffIcon.js")
|