@bubbles-ui/icons 1.0.7 → 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/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
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")
|