@bubbles-ui/icons 1.0.26 → 1.0.27
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/DeleteBinIcon.d.ts +3 -0
- package/outline/DeleteBinIcon.js +31 -0
- package/outline/esm/DeleteBinIcon.d.ts +3 -0
- package/outline/esm/DeleteBinIcon.js +31 -0
- package/outline/esm/index.d.ts +1 -0
- package/outline/esm/index.js +1 -0
- package/outline/index.d.ts +1 -0
- package/outline/index.js +1 -0
- package/package.json +12 -5
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
function DeleteBinIcon(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: "M17.25 21H6.75a1.5 1.5 0 0 1-1.5-1.5V6h13.5v13.5a1.5 1.5 0 0 1-1.5 1.5Z",
|
|
16
|
+
clipRule: "evenodd"
|
|
17
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
strokeLinecap: "round",
|
|
19
|
+
strokeLinejoin: "round",
|
|
20
|
+
strokeWidth: 2,
|
|
21
|
+
d: "M9.75 16.5v-6M14.25 16.5v-6M2.25 6h19.5"
|
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
strokeLinecap: "round",
|
|
24
|
+
strokeLinejoin: "round",
|
|
25
|
+
strokeWidth: 2,
|
|
26
|
+
d: "M14.25 3h-4.5a1.5 1.5 0 0 0-1.5 1.5V6h7.5V4.5a1.5 1.5 0 0 0-1.5-1.5Z",
|
|
27
|
+
clipRule: "evenodd"
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
module.exports = DeleteBinIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
function DeleteBinIcon(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: "M17.25 21H6.75a1.5 1.5 0 0 1-1.5-1.5V6h13.5v13.5a1.5 1.5 0 0 1-1.5 1.5Z",
|
|
16
|
+
clipRule: "evenodd"
|
|
17
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
strokeLinecap: "round",
|
|
19
|
+
strokeLinejoin: "round",
|
|
20
|
+
strokeWidth: 2,
|
|
21
|
+
d: "M9.75 16.5v-6M14.25 16.5v-6M2.25 6h19.5"
|
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
strokeLinecap: "round",
|
|
24
|
+
strokeLinejoin: "round",
|
|
25
|
+
strokeWidth: 2,
|
|
26
|
+
d: "M14.25 3h-4.5a1.5 1.5 0 0 0-1.5 1.5V6h7.5V4.5a1.5 1.5 0 0 0-1.5-1.5Z",
|
|
27
|
+
clipRule: "evenodd"
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export default DeleteBinIcon;
|
package/outline/esm/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export { default as ComputerKeyboardPreviousIcon } from './ComputerKeyboardPrevi
|
|
|
40
40
|
export { default as ComputerKeyboardReturnIcon } from './ComputerKeyboardReturnIcon'
|
|
41
41
|
export { default as ComputerKeyboardIcon } from './ComputerKeyboardIcon'
|
|
42
42
|
export { default as CursorIcon } from './CursorIcon'
|
|
43
|
+
export { default as DeleteBinIcon } from './DeleteBinIcon'
|
|
43
44
|
export { default as DoneCircleIcon } from './DoneCircleIcon'
|
|
44
45
|
export { default as DoneSquareIcon } from './DoneSquareIcon'
|
|
45
46
|
export { default as DownloadDrawerIcon } from './DownloadDrawerIcon'
|
package/outline/esm/index.js
CHANGED
|
@@ -40,6 +40,7 @@ export { default as ComputerKeyboardPreviousIcon } from './ComputerKeyboardPrevi
|
|
|
40
40
|
export { default as ComputerKeyboardReturnIcon } from './ComputerKeyboardReturnIcon.js'
|
|
41
41
|
export { default as ComputerKeyboardIcon } from './ComputerKeyboardIcon.js'
|
|
42
42
|
export { default as CursorIcon } from './CursorIcon.js'
|
|
43
|
+
export { default as DeleteBinIcon } from './DeleteBinIcon.js'
|
|
43
44
|
export { default as DoneCircleIcon } from './DoneCircleIcon.js'
|
|
44
45
|
export { default as DoneSquareIcon } from './DoneSquareIcon.js'
|
|
45
46
|
export { default as DownloadDrawerIcon } from './DownloadDrawerIcon.js'
|
package/outline/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export { default as ComputerKeyboardPreviousIcon } from './ComputerKeyboardPrevi
|
|
|
40
40
|
export { default as ComputerKeyboardReturnIcon } from './ComputerKeyboardReturnIcon'
|
|
41
41
|
export { default as ComputerKeyboardIcon } from './ComputerKeyboardIcon'
|
|
42
42
|
export { default as CursorIcon } from './CursorIcon'
|
|
43
|
+
export { default as DeleteBinIcon } from './DeleteBinIcon'
|
|
43
44
|
export { default as DoneCircleIcon } from './DoneCircleIcon'
|
|
44
45
|
export { default as DoneSquareIcon } from './DoneSquareIcon'
|
|
45
46
|
export { default as DownloadDrawerIcon } from './DownloadDrawerIcon'
|
package/outline/index.js
CHANGED
|
@@ -40,6 +40,7 @@ module.exports.ComputerKeyboardPreviousIcon = require("./ComputerKeyboardPreviou
|
|
|
40
40
|
module.exports.ComputerKeyboardReturnIcon = require("./ComputerKeyboardReturnIcon.js")
|
|
41
41
|
module.exports.ComputerKeyboardIcon = require("./ComputerKeyboardIcon.js")
|
|
42
42
|
module.exports.CursorIcon = require("./CursorIcon.js")
|
|
43
|
+
module.exports.DeleteBinIcon = require("./DeleteBinIcon.js")
|
|
43
44
|
module.exports.DoneCircleIcon = require("./DoneCircleIcon.js")
|
|
44
45
|
module.exports.DoneSquareIcon = require("./DoneSquareIcon.js")
|
|
45
46
|
module.exports.DownloadDrawerIcon = require("./DownloadDrawerIcon.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.27",
|
|
4
4
|
"description": "The Bubbles Design System icons library.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -26,11 +26,18 @@
|
|
|
26
26
|
"registry": "https://registry.npmjs.org/"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
|
-
"build-publish": "
|
|
30
|
-
"
|
|
29
|
+
"build-publish": "run-s build version:patch publish",
|
|
30
|
+
"version:patch": "npm version patch",
|
|
31
|
+
"build-all": "run-s build",
|
|
32
|
+
"build-all:no-types": "run-s build-all",
|
|
33
|
+
"build": "run-s build-outline build-solid build-react",
|
|
31
34
|
"build-react": "node ./scripts/build.js react",
|
|
32
|
-
"build-outline": "
|
|
33
|
-
"build-solid": "
|
|
35
|
+
"build-outline": "run-s build-outline:clean build-outline:lib",
|
|
36
|
+
"build-solid": "run-s build-solid:clean build-solid:lib",
|
|
37
|
+
"build-outline:clean": "rimraf ./optimized/outline",
|
|
38
|
+
"build-outline:lib": "svgo --config=svgo.outline.js -f ./src/outline -o ./optimized/outline --pretty --indent=2",
|
|
39
|
+
"build-solid:clean": "rimraf ./optimized/solid",
|
|
40
|
+
"build-solid:lib": "svgo --config=svgo.solid.js -f ./src/solid -o ./optimized/solid --pretty --indent=2"
|
|
34
41
|
},
|
|
35
42
|
"devDependencies": {
|
|
36
43
|
"@babel/core": "^7.12.10",
|