@bubbles-ui/icons 1.0.1 → 1.0.8
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/FileIcon.d.ts +3 -0
- package/outline/FileIcon.js +26 -0
- package/outline/MeetingCameraIcon.d.ts +3 -0
- package/outline/MeetingCameraIcon.js +20 -0
- package/outline/esm/FileIcon.d.ts +3 -0
- package/outline/esm/FileIcon.js +26 -0
- package/outline/esm/MeetingCameraIcon.d.ts +3 -0
- package/outline/esm/MeetingCameraIcon.js +20 -0
- package/outline/esm/index.d.ts +2 -0
- package/outline/esm/index.js +2 -0
- package/outline/index.d.ts +2 -0
- package/outline/index.js +2 -0
- package/package.json +2 -2
- package/solid/RatingStarIcon.d.ts +3 -0
- package/solid/RatingStarIcon.js +15 -0
- package/solid/esm/RatingStarIcon.d.ts +3 -0
- package/solid/esm/RatingStarIcon.js +15 -0
- package/solid/esm/index.d.ts +1 -0
- package/solid/esm/index.js +1 -0
- package/solid/index.d.ts +1 -0
- package/solid/index.js +1 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
function FileIcon(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("path", {
|
|
12
|
+
strokeLinecap: "round",
|
|
13
|
+
strokeLinejoin: "round",
|
|
14
|
+
strokeWidth: 2,
|
|
15
|
+
d: "M18.647 23.25H2.25a1.5 1.5 0 0 1-1.5-1.5V2.25a1.5 1.5 0 0 1 1.5-1.5h10.629a1.5 1.5 0 0 1 1.06.439l5.872 5.872a1.5 1.5 0 0 1 .439 1.06v13.343c0 .854-.514 1.786-1.603 1.786Z"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
strokeLinecap: "round",
|
|
18
|
+
strokeLinejoin: "round",
|
|
19
|
+
strokeWidth: 2,
|
|
20
|
+
d: "M20.25 8.25h-6a1.5 1.5 0 0 1-1.5-1.5v-6"
|
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
d: "M0 0h24v24H0V0Z"
|
|
23
|
+
}));
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
module.exports = FileIcon;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
function MeetingCameraIcon(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
|
+
strokeLinecap: "round",
|
|
13
|
+
strokeLinejoin: "round",
|
|
14
|
+
strokeWidth: 2
|
|
15
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
d: "M8.5 3.507h-6a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2ZM12.5 10.007l2.277 1.138a.5.5 0 0 0 .723-.447V5.316a.499.499 0 0 0-.723-.447L12.5 6.007"
|
|
17
|
+
})));
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
module.exports = MeetingCameraIcon;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
function FileIcon(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("path", {
|
|
12
|
+
strokeLinecap: "round",
|
|
13
|
+
strokeLinejoin: "round",
|
|
14
|
+
strokeWidth: 2,
|
|
15
|
+
d: "M18.647 23.25H2.25a1.5 1.5 0 0 1-1.5-1.5V2.25a1.5 1.5 0 0 1 1.5-1.5h10.629a1.5 1.5 0 0 1 1.06.439l5.872 5.872a1.5 1.5 0 0 1 .439 1.06v13.343c0 .854-.514 1.786-1.603 1.786Z"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
strokeLinecap: "round",
|
|
18
|
+
strokeLinejoin: "round",
|
|
19
|
+
strokeWidth: 2,
|
|
20
|
+
d: "M20.25 8.25h-6a1.5 1.5 0 0 1-1.5-1.5v-6"
|
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
d: "M0 0h24v24H0V0Z"
|
|
23
|
+
}));
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export default FileIcon;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
function MeetingCameraIcon(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
|
+
strokeLinecap: "round",
|
|
13
|
+
strokeLinejoin: "round",
|
|
14
|
+
strokeWidth: 2
|
|
15
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
d: "M8.5 3.507h-6a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2ZM12.5 10.007l2.277 1.138a.5.5 0 0 0 .723-.447V5.316a.499.499 0 0 0-.723-.447L12.5 6.007"
|
|
17
|
+
})));
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export default MeetingCameraIcon;
|
package/outline/esm/index.d.ts
CHANGED
|
@@ -67,6 +67,7 @@ export { default as FileSvgIcon } from './FileSvgIcon'
|
|
|
67
67
|
export { default as FileTxtIcon } from './FileTxtIcon'
|
|
68
68
|
export { default as FileXmlIcon } from './FileXmlIcon'
|
|
69
69
|
export { default as FileZipIcon } from './FileZipIcon'
|
|
70
|
+
export { default as FileIcon } from './FileIcon'
|
|
70
71
|
export { default as FilterIcon } from './FilterIcon'
|
|
71
72
|
export { default as FormFileAttachIcon } from './FormFileAttachIcon'
|
|
72
73
|
export { default as FormImageAttachIcon } from './FormImageAttachIcon'
|
|
@@ -85,6 +86,7 @@ export { default as LayoutTwoColumsIcon } from './LayoutTwoColumsIcon'
|
|
|
85
86
|
export { default as LinkBrokenIcon } from './LinkBrokenIcon'
|
|
86
87
|
export { default as LoveItRemoveIcon } from './LoveItRemoveIcon'
|
|
87
88
|
export { default as LoveItIcon } from './LoveItIcon'
|
|
89
|
+
export { default as MeetingCameraIcon } from './MeetingCameraIcon'
|
|
88
90
|
export { default as ModuleFourIcon } from './ModuleFourIcon'
|
|
89
91
|
export { default as ModuleThreeIcon } from './ModuleThreeIcon'
|
|
90
92
|
export { default as ModuleTwoIcon } from './ModuleTwoIcon'
|
package/outline/esm/index.js
CHANGED
|
@@ -67,6 +67,7 @@ export { default as FileSvgIcon } from './FileSvgIcon.js'
|
|
|
67
67
|
export { default as FileTxtIcon } from './FileTxtIcon.js'
|
|
68
68
|
export { default as FileXmlIcon } from './FileXmlIcon.js'
|
|
69
69
|
export { default as FileZipIcon } from './FileZipIcon.js'
|
|
70
|
+
export { default as FileIcon } from './FileIcon.js'
|
|
70
71
|
export { default as FilterIcon } from './FilterIcon.js'
|
|
71
72
|
export { default as FormFileAttachIcon } from './FormFileAttachIcon.js'
|
|
72
73
|
export { default as FormImageAttachIcon } from './FormImageAttachIcon.js'
|
|
@@ -85,6 +86,7 @@ export { default as LayoutTwoColumsIcon } from './LayoutTwoColumsIcon.js'
|
|
|
85
86
|
export { default as LinkBrokenIcon } from './LinkBrokenIcon.js'
|
|
86
87
|
export { default as LoveItRemoveIcon } from './LoveItRemoveIcon.js'
|
|
87
88
|
export { default as LoveItIcon } from './LoveItIcon.js'
|
|
89
|
+
export { default as MeetingCameraIcon } from './MeetingCameraIcon.js'
|
|
88
90
|
export { default as ModuleFourIcon } from './ModuleFourIcon.js'
|
|
89
91
|
export { default as ModuleThreeIcon } from './ModuleThreeIcon.js'
|
|
90
92
|
export { default as ModuleTwoIcon } from './ModuleTwoIcon.js'
|
package/outline/index.d.ts
CHANGED
|
@@ -67,6 +67,7 @@ export { default as FileSvgIcon } from './FileSvgIcon'
|
|
|
67
67
|
export { default as FileTxtIcon } from './FileTxtIcon'
|
|
68
68
|
export { default as FileXmlIcon } from './FileXmlIcon'
|
|
69
69
|
export { default as FileZipIcon } from './FileZipIcon'
|
|
70
|
+
export { default as FileIcon } from './FileIcon'
|
|
70
71
|
export { default as FilterIcon } from './FilterIcon'
|
|
71
72
|
export { default as FormFileAttachIcon } from './FormFileAttachIcon'
|
|
72
73
|
export { default as FormImageAttachIcon } from './FormImageAttachIcon'
|
|
@@ -85,6 +86,7 @@ export { default as LayoutTwoColumsIcon } from './LayoutTwoColumsIcon'
|
|
|
85
86
|
export { default as LinkBrokenIcon } from './LinkBrokenIcon'
|
|
86
87
|
export { default as LoveItRemoveIcon } from './LoveItRemoveIcon'
|
|
87
88
|
export { default as LoveItIcon } from './LoveItIcon'
|
|
89
|
+
export { default as MeetingCameraIcon } from './MeetingCameraIcon'
|
|
88
90
|
export { default as ModuleFourIcon } from './ModuleFourIcon'
|
|
89
91
|
export { default as ModuleThreeIcon } from './ModuleThreeIcon'
|
|
90
92
|
export { default as ModuleTwoIcon } from './ModuleTwoIcon'
|
package/outline/index.js
CHANGED
|
@@ -67,6 +67,7 @@ module.exports.FileSvgIcon = require("./FileSvgIcon.js")
|
|
|
67
67
|
module.exports.FileTxtIcon = require("./FileTxtIcon.js")
|
|
68
68
|
module.exports.FileXmlIcon = require("./FileXmlIcon.js")
|
|
69
69
|
module.exports.FileZipIcon = require("./FileZipIcon.js")
|
|
70
|
+
module.exports.FileIcon = require("./FileIcon.js")
|
|
70
71
|
module.exports.FilterIcon = require("./FilterIcon.js")
|
|
71
72
|
module.exports.FormFileAttachIcon = require("./FormFileAttachIcon.js")
|
|
72
73
|
module.exports.FormImageAttachIcon = require("./FormImageAttachIcon.js")
|
|
@@ -85,6 +86,7 @@ module.exports.LayoutTwoColumsIcon = require("./LayoutTwoColumsIcon.js")
|
|
|
85
86
|
module.exports.LinkBrokenIcon = require("./LinkBrokenIcon.js")
|
|
86
87
|
module.exports.LoveItRemoveIcon = require("./LoveItRemoveIcon.js")
|
|
87
88
|
module.exports.LoveItIcon = require("./LoveItIcon.js")
|
|
89
|
+
module.exports.MeetingCameraIcon = require("./MeetingCameraIcon.js")
|
|
88
90
|
module.exports.ModuleFourIcon = require("./ModuleFourIcon.js")
|
|
89
91
|
module.exports.ModuleThreeIcon = require("./ModuleThreeIcon.js")
|
|
90
92
|
module.exports.ModuleTwoIcon = require("./ModuleTwoIcon.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.8",
|
|
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
|
-
"
|
|
29
|
+
"build-publish": "yarn build && npm version patch && npm publish",
|
|
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",
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
function RatingStarIcon(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
5
|
+
viewBox: "0 0 13 12",
|
|
6
|
+
fill: "currentColor",
|
|
7
|
+
"aria-hidden": "true",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
d: "M12.15 4.365a.752.752 0 0 0-.703-.49H8.403a.25.25 0 0 1-.236-.167L7.075.61a.75.75 0 0 0-1.405 0l-.003.008-1.09 3.089a.25.25 0 0 1-.235.167H1.297A.75.75 0 0 0 .816 5.2l2.592 2.15a.25.25 0 0 1 .077.272l-1.089 3.265a.75.75 0 0 0 1.155.842l2.673-1.96a.25.25 0 0 1 .296 0l2.672 1.96a.75.75 0 0 0 1.156-.842L9.258 7.62a.25.25 0 0 1 .078-.272l2.597-2.153a.75.75 0 0 0 .217-.83Z"
|
|
12
|
+
}));
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
module.exports = RatingStarIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
function RatingStarIcon(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
5
|
+
viewBox: "0 0 13 12",
|
|
6
|
+
fill: "currentColor",
|
|
7
|
+
"aria-hidden": "true",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
d: "M12.15 4.365a.752.752 0 0 0-.703-.49H8.403a.25.25 0 0 1-.236-.167L7.075.61a.75.75 0 0 0-1.405 0l-.003.008-1.09 3.089a.25.25 0 0 1-.235.167H1.297A.75.75 0 0 0 .816 5.2l2.592 2.15a.25.25 0 0 1 .077.272l-1.089 3.265a.75.75 0 0 0 1.155.842l2.673-1.96a.25.25 0 0 1 .296 0l2.672 1.96a.75.75 0 0 0 1.156-.842L9.258 7.62a.25.25 0 0 1 .078-.272l2.597-2.153a.75.75 0 0 0 .217-.83Z"
|
|
12
|
+
}));
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export default RatingStarIcon;
|
package/solid/esm/index.d.ts
CHANGED
|
@@ -94,6 +94,7 @@ export { default as PluginTransactionalIcon } from './PluginTransactionalIcon'
|
|
|
94
94
|
export { default as PluginTranslatorIcon } from './PluginTranslatorIcon'
|
|
95
95
|
export { default as PluginUsersIcon } from './PluginUsersIcon'
|
|
96
96
|
export { default as PluginVirtualBlackboadIcon } from './PluginVirtualBlackboadIcon'
|
|
97
|
+
export { default as RatingStarIcon } from './RatingStarIcon'
|
|
97
98
|
export { default as RemoveBoldIcon } from './RemoveBoldIcon'
|
|
98
99
|
export { default as ReorderDownIcon } from './ReorderDownIcon'
|
|
99
100
|
export { default as SettingMenuHorizontalIcon } from './SettingMenuHorizontalIcon'
|
package/solid/esm/index.js
CHANGED
|
@@ -94,6 +94,7 @@ export { default as PluginTransactionalIcon } from './PluginTransactionalIcon.js
|
|
|
94
94
|
export { default as PluginTranslatorIcon } from './PluginTranslatorIcon.js'
|
|
95
95
|
export { default as PluginUsersIcon } from './PluginUsersIcon.js'
|
|
96
96
|
export { default as PluginVirtualBlackboadIcon } from './PluginVirtualBlackboadIcon.js'
|
|
97
|
+
export { default as RatingStarIcon } from './RatingStarIcon.js'
|
|
97
98
|
export { default as RemoveBoldIcon } from './RemoveBoldIcon.js'
|
|
98
99
|
export { default as ReorderDownIcon } from './ReorderDownIcon.js'
|
|
99
100
|
export { default as SettingMenuHorizontalIcon } from './SettingMenuHorizontalIcon.js'
|
package/solid/index.d.ts
CHANGED
|
@@ -94,6 +94,7 @@ export { default as PluginTransactionalIcon } from './PluginTransactionalIcon'
|
|
|
94
94
|
export { default as PluginTranslatorIcon } from './PluginTranslatorIcon'
|
|
95
95
|
export { default as PluginUsersIcon } from './PluginUsersIcon'
|
|
96
96
|
export { default as PluginVirtualBlackboadIcon } from './PluginVirtualBlackboadIcon'
|
|
97
|
+
export { default as RatingStarIcon } from './RatingStarIcon'
|
|
97
98
|
export { default as RemoveBoldIcon } from './RemoveBoldIcon'
|
|
98
99
|
export { default as ReorderDownIcon } from './ReorderDownIcon'
|
|
99
100
|
export { default as SettingMenuHorizontalIcon } from './SettingMenuHorizontalIcon'
|
package/solid/index.js
CHANGED
|
@@ -94,6 +94,7 @@ module.exports.PluginTransactionalIcon = require("./PluginTransactionalIcon.js")
|
|
|
94
94
|
module.exports.PluginTranslatorIcon = require("./PluginTranslatorIcon.js")
|
|
95
95
|
module.exports.PluginUsersIcon = require("./PluginUsersIcon.js")
|
|
96
96
|
module.exports.PluginVirtualBlackboadIcon = require("./PluginVirtualBlackboadIcon.js")
|
|
97
|
+
module.exports.RatingStarIcon = require("./RatingStarIcon.js")
|
|
97
98
|
module.exports.RemoveBoldIcon = require("./RemoveBoldIcon.js")
|
|
98
99
|
module.exports.ReorderDownIcon = require("./ReorderDownIcon.js")
|
|
99
100
|
module.exports.SettingMenuHorizontalIcon = require("./SettingMenuHorizontalIcon.js")
|