@cloudtower/icons-react 0.22.10 → 0.22.12

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.
Files changed (60) hide show
  1. package/dist/index.js +1212 -0
  2. package/package.json +15 -129
  3. package/16/filled/PlusCircleBlueIcon.d.ts +0 -4
  4. package/16/filled/PlusCircleBlueIcon.js +0 -22
  5. package/16/filled/esm/PlusCircleBlueIcon.d.ts +0 -4
  6. package/16/filled/esm/PlusCircleBlueIcon.js +0 -22
  7. package/16/filled/esm/index.d.ts +0 -1
  8. package/16/filled/esm/index.js +0 -1
  9. package/16/filled/esm/package.json +0 -4
  10. package/16/filled/index.d.ts +0 -1
  11. package/16/filled/index.js +0 -1
  12. package/16/filled/package.json +0 -4
  13. package/16/outline/PlusCircleBlueIcon.d.ts +0 -4
  14. package/16/outline/PlusCircleBlueIcon.js +0 -27
  15. package/16/outline/esm/PlusCircleBlueIcon.d.ts +0 -4
  16. package/16/outline/esm/PlusCircleBlueIcon.js +0 -27
  17. package/16/outline/esm/index.d.ts +0 -1
  18. package/16/outline/esm/index.js +0 -1
  19. package/16/outline/esm/package.json +0 -4
  20. package/16/outline/index.d.ts +0 -1
  21. package/16/outline/index.js +0 -1
  22. package/16/outline/package.json +0 -4
  23. package/24/filled/AlertBellGradientBlueIcon.d.ts +0 -4
  24. package/24/filled/AlertBellGradientBlueIcon.js +0 -49
  25. package/24/filled/LoadingBlueIcon.d.ts +0 -4
  26. package/24/filled/LoadingBlueIcon.js +0 -32
  27. package/24/filled/PlusAddCreateNewGradientGrayIcon.d.ts +0 -4
  28. package/24/filled/PlusAddCreateNewGradientGrayIcon.js +0 -34
  29. package/24/filled/esm/AlertBellGradientBlueIcon.d.ts +0 -4
  30. package/24/filled/esm/AlertBellGradientBlueIcon.js +0 -49
  31. package/24/filled/esm/LoadingBlueIcon.d.ts +0 -4
  32. package/24/filled/esm/LoadingBlueIcon.js +0 -32
  33. package/24/filled/esm/PlusAddCreateNewGradientGrayIcon.d.ts +0 -4
  34. package/24/filled/esm/PlusAddCreateNewGradientGrayIcon.js +0 -34
  35. package/24/filled/esm/index.d.ts +0 -3
  36. package/24/filled/esm/index.js +0 -3
  37. package/24/filled/esm/package.json +0 -4
  38. package/24/filled/index.d.ts +0 -3
  39. package/24/filled/index.js +0 -3
  40. package/24/filled/package.json +0 -4
  41. package/24/outline/AlertBellGradientBlueIcon.d.ts +0 -4
  42. package/24/outline/AlertBellGradientBlueIcon.js +0 -36
  43. package/24/outline/esm/AlertBellGradientBlueIcon.d.ts +0 -4
  44. package/24/outline/esm/AlertBellGradientBlueIcon.js +0 -36
  45. package/24/outline/esm/index.d.ts +0 -1
  46. package/24/outline/esm/index.js +0 -1
  47. package/24/outline/esm/package.json +0 -4
  48. package/24/outline/index.d.ts +0 -1
  49. package/24/outline/index.js +0 -1
  50. package/24/outline/package.json +0 -4
  51. package/32/outline/AlertIcon.d.ts +0 -4
  52. package/32/outline/AlertIcon.js +0 -42
  53. package/32/outline/esm/AlertIcon.d.ts +0 -4
  54. package/32/outline/esm/AlertIcon.js +0 -42
  55. package/32/outline/esm/index.d.ts +0 -1
  56. package/32/outline/esm/index.js +0 -1
  57. package/32/outline/esm/package.json +0 -4
  58. package/32/outline/index.d.ts +0 -1
  59. package/32/outline/index.js +0 -1
  60. package/32/outline/package.json +0 -4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudtower/icons-react",
3
3
  "license": "MIT",
4
- "version": "0.22.10",
4
+ "version": "0.22.12",
5
5
  "description": "",
6
6
  "keywords": [],
7
7
  "homepage": "https://github.com/webzard-io/cloudtower-ui-kit#readme",
@@ -25,135 +25,21 @@
25
25
  },
26
26
  "scripts": {
27
27
  "lint": "node ./scripts/verify-names.js",
28
- "pregenerate-icons": "rimraf ./{16,24,32}",
29
- "generate-icons": "node scripts/build.js"
28
+ "clean": "rimraf ./dist",
29
+ "build-icons": "cd ../icons && npm run build && cd ../icons-react",
30
+ "prebuild": "npm run clean && npm run build-icons",
31
+ "build": "node scripts/build.js",
32
+ "postbuild": "node ./scripts/images-types.js"
30
33
  },
31
34
  "devDependencies": {
32
- "@cloudtower/icons": "0.22.10"
35
+ "@babel/core": "^7.21.0",
36
+ "@babel/plugin-transform-react-jsx": "^7.21.0",
37
+ "@cloudtower/icons": "0.22.12",
38
+ "@svgr/core": "^5.0.0",
39
+ "camelcase": "^6.0.0"
33
40
  },
34
- "exports": {
35
- ".": {
36
- "import": "./index.esm.js",
37
- "require": "./index.js"
38
- },
39
- "./package.json": {
40
- "default": "./package.json"
41
- },
42
- "./16/outline": {
43
- "types": "./16/outline/index.d.ts",
44
- "import": "./16/outline/index.js",
45
- "require": "./16/outline/index.js"
46
- },
47
- "./16/outline/*": {
48
- "types": "./16/outline/*.d.ts",
49
- "import": "./16/outline/esm/*.js",
50
- "require": "./16/outline/*.js"
51
- },
52
- "./16/outline/*.js": {
53
- "types": "./16/outline/*.d.ts",
54
- "import": "./16/outline/esm/*.js",
55
- "require": "./16/outline/*.js"
56
- },
57
- "./16/outline/esm/*": {
58
- "types": "./16/outline/*.d.ts",
59
- "import": "./16/outline/esm/*.js"
60
- },
61
- "./16/outline/esm/*.js": {
62
- "types": "./16/outline/*.d.ts",
63
- "import": "./16/outline/esm/*.js"
64
- },
65
- "./24/outline": {
66
- "types": "./24/outline/index.d.ts",
67
- "import": "./24/outline/index.js",
68
- "require": "./24/outline/index.js"
69
- },
70
- "./24/outline/*": {
71
- "types": "./24/outline/*.d.ts",
72
- "import": "./24/outline/esm/*.js",
73
- "require": "./24/outline/*.js"
74
- },
75
- "./24/outline/*.js": {
76
- "types": "./24/outline/*.d.ts",
77
- "import": "./24/outline/esm/*.js",
78
- "require": "./24/outline/*.js"
79
- },
80
- "./24/outline/esm/*": {
81
- "types": "./24/outline/*.d.ts",
82
- "import": "./24/outline/esm/*.js"
83
- },
84
- "./24/outline/esm/*.js": {
85
- "types": "./24/outline/*.d.ts",
86
- "import": "./24/outline/esm/*.js"
87
- },
88
- "./32/outline": {
89
- "types": "./32/outline/index.d.ts",
90
- "import": "./32/outline/index.js",
91
- "require": "./32/outline/index.js"
92
- },
93
- "./32/outline/*": {
94
- "types": "./32/outline/*.d.ts",
95
- "import": "./32/outline/esm/*.js",
96
- "require": "./32/outline/*.js"
97
- },
98
- "./32/outline/*.js": {
99
- "types": "./32/outline/*.d.ts",
100
- "import": "./32/outline/esm/*.js",
101
- "require": "./32/outline/*.js"
102
- },
103
- "./32/outline/esm/*": {
104
- "types": "./32/outline/*.d.ts",
105
- "import": "./32/outline/esm/*.js"
106
- },
107
- "./32/outline/esm/*.js": {
108
- "types": "./32/outline/*.d.ts",
109
- "import": "./32/outline/esm/*.js"
110
- },
111
- "./16/filled": {
112
- "types": "./16/filled/index.d.ts",
113
- "import": "./16/filled/index.js",
114
- "require": "./16/filled/index.js"
115
- },
116
- "./16/filled/*": {
117
- "types": "./16/filled/*.d.ts",
118
- "import": "./16/filled/esm/*.js",
119
- "require": "./16/filled/*.js"
120
- },
121
- "./16/filled/*.js": {
122
- "types": "./16/filled/*.d.ts",
123
- "import": "./16/filled/esm/*.js",
124
- "require": "./16/filled/*.js"
125
- },
126
- "./16/filled/esm/*": {
127
- "types": "./16/filled/*.d.ts",
128
- "import": "./16/filled/esm/*.js"
129
- },
130
- "./16/filled/esm/*.js": {
131
- "types": "./16/filled/*.d.ts",
132
- "import": "./16/filled/esm/*.js"
133
- },
134
- "./24/filled": {
135
- "types": "./24/filled/index.d.ts",
136
- "import": "./24/filled/index.js",
137
- "require": "./24/filled/index.js"
138
- },
139
- "./24/filled/*": {
140
- "types": "./24/filled/*.d.ts",
141
- "import": "./24/filled/esm/*.js",
142
- "require": "./24/filled/*.js"
143
- },
144
- "./24/filled/*.js": {
145
- "types": "./24/filled/*.d.ts",
146
- "import": "./24/filled/esm/*.js",
147
- "require": "./24/filled/*.js"
148
- },
149
- "./24/filled/esm/*": {
150
- "types": "./24/filled/*.d.ts",
151
- "import": "./24/filled/esm/*.js"
152
- },
153
- "./24/filled/esm/*.js": {
154
- "types": "./24/filled/*.d.ts",
155
- "import": "./24/filled/esm/*.js"
156
- }
157
- },
158
- "gitHead": "e9a285492a68cb91a891d91802c6ab9f35aa30c3"
41
+ "main": "dist/index.js",
42
+ "module": "dist/esm/index.js",
43
+ "typings": "dist/index.d.ts",
44
+ "gitHead": "5f081428323f628b699fa7ded639e8effb3a73ca"
159
45
  }
@@ -1,4 +0,0 @@
1
- import * as React from 'react';
2
- declare const PlusCircleBlueIcon: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & { title?: string, titleId?: string }>;
3
- export default PlusCircleBlueIcon;
4
-
@@ -1,22 +0,0 @@
1
- const React = require("react");
2
- function PlusCircleBlueIcon({
3
- title,
4
- titleId,
5
- ...props
6
- }, svgRef) {
7
- return /*#__PURE__*/React.createElement("svg", Object.assign({
8
- width: 16,
9
- height: 16,
10
- fill: "none",
11
- xmlns: "http://www.w3.org/2000/svg",
12
- ref: svgRef,
13
- "aria-labelledby": titleId
14
- }, props), title ? /*#__PURE__*/React.createElement("title", {
15
- id: titleId
16
- }, title) : null, /*#__PURE__*/React.createElement("path", {
17
- d: "M9 4a1 1 0 00-2 0v3H4a1 1 0 000 2h3v3a1 1 0 102 0V9h3a1 1 0 100-2H9V4z",
18
- fill: "#0080FF"
19
- }));
20
- }
21
- const ForwardRef = React.forwardRef(PlusCircleBlueIcon);
22
- module.exports = ForwardRef;
@@ -1,4 +0,0 @@
1
- import * as React from 'react';
2
- declare const PlusCircleBlueIcon: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & { title?: string, titleId?: string }>;
3
- export default PlusCircleBlueIcon;
4
-
@@ -1,22 +0,0 @@
1
- import * as React from "react";
2
- function PlusCircleBlueIcon({
3
- title,
4
- titleId,
5
- ...props
6
- }, svgRef) {
7
- return /*#__PURE__*/React.createElement("svg", Object.assign({
8
- width: 16,
9
- height: 16,
10
- fill: "none",
11
- xmlns: "http://www.w3.org/2000/svg",
12
- ref: svgRef,
13
- "aria-labelledby": titleId
14
- }, props), title ? /*#__PURE__*/React.createElement("title", {
15
- id: titleId
16
- }, title) : null, /*#__PURE__*/React.createElement("path", {
17
- d: "M9 4a1 1 0 00-2 0v3H4a1 1 0 000 2h3v3a1 1 0 102 0V9h3a1 1 0 100-2H9V4z",
18
- fill: "#0080FF"
19
- }));
20
- }
21
- const ForwardRef = React.forwardRef(PlusCircleBlueIcon);
22
- export default ForwardRef;
@@ -1 +0,0 @@
1
- export { default as PlusCircleBlueIcon } from './PlusCircleBlueIcon'
@@ -1 +0,0 @@
1
- export { default as PlusCircleBlueIcon } from './PlusCircleBlueIcon.js'
@@ -1,4 +0,0 @@
1
- {
2
- "type": "module",
3
- "sideEffects": false
4
- }
@@ -1 +0,0 @@
1
- export { default as PlusCircleBlueIcon } from './PlusCircleBlueIcon'
@@ -1 +0,0 @@
1
- module.exports.PlusCircleBlueIcon = require("./PlusCircleBlueIcon.js")
@@ -1,4 +0,0 @@
1
- {
2
- "module": "./esm/index.js",
3
- "sideEffects": false
4
- }
@@ -1,4 +0,0 @@
1
- import * as React from 'react';
2
- declare const PlusCircleBlueIcon: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & { title?: string, titleId?: string }>;
3
- export default PlusCircleBlueIcon;
4
-
@@ -1,27 +0,0 @@
1
- const React = require("react");
2
- function PlusCircleBlueIcon({
3
- title,
4
- titleId,
5
- ...props
6
- }, svgRef) {
7
- return /*#__PURE__*/React.createElement("svg", Object.assign({
8
- width: 16,
9
- height: 16,
10
- fill: "none",
11
- xmlns: "http://www.w3.org/2000/svg",
12
- ref: svgRef,
13
- "aria-labelledby": titleId
14
- }, props), title ? /*#__PURE__*/React.createElement("title", {
15
- id: titleId
16
- }, title) : null, /*#__PURE__*/React.createElement("path", {
17
- d: "M4.5 8a.5.5 0 01.5-.5h2.5V5a.5.5 0 011 0v2.5H11a.5.5 0 010 1H8.5V11a.5.5 0 01-1 0V8.5H5a.5.5 0 01-.5-.5z",
18
- fill: "#0080FF"
19
- }), /*#__PURE__*/React.createElement("path", {
20
- fillRule: "evenodd",
21
- clipRule: "evenodd",
22
- d: "M8 15A7 7 0 108 1a7 7 0 000 14zm0-1A6 6 0 108 2a6 6 0 000 12z",
23
- fill: "#0080FF"
24
- }));
25
- }
26
- const ForwardRef = React.forwardRef(PlusCircleBlueIcon);
27
- module.exports = ForwardRef;
@@ -1,4 +0,0 @@
1
- import * as React from 'react';
2
- declare const PlusCircleBlueIcon: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & { title?: string, titleId?: string }>;
3
- export default PlusCircleBlueIcon;
4
-
@@ -1,27 +0,0 @@
1
- import * as React from "react";
2
- function PlusCircleBlueIcon({
3
- title,
4
- titleId,
5
- ...props
6
- }, svgRef) {
7
- return /*#__PURE__*/React.createElement("svg", Object.assign({
8
- width: 16,
9
- height: 16,
10
- fill: "none",
11
- xmlns: "http://www.w3.org/2000/svg",
12
- ref: svgRef,
13
- "aria-labelledby": titleId
14
- }, props), title ? /*#__PURE__*/React.createElement("title", {
15
- id: titleId
16
- }, title) : null, /*#__PURE__*/React.createElement("path", {
17
- d: "M4.5 8a.5.5 0 01.5-.5h2.5V5a.5.5 0 011 0v2.5H11a.5.5 0 010 1H8.5V11a.5.5 0 01-1 0V8.5H5a.5.5 0 01-.5-.5z",
18
- fill: "#0080FF"
19
- }), /*#__PURE__*/React.createElement("path", {
20
- fillRule: "evenodd",
21
- clipRule: "evenodd",
22
- d: "M8 15A7 7 0 108 1a7 7 0 000 14zm0-1A6 6 0 108 2a6 6 0 000 12z",
23
- fill: "#0080FF"
24
- }));
25
- }
26
- const ForwardRef = React.forwardRef(PlusCircleBlueIcon);
27
- export default ForwardRef;
@@ -1 +0,0 @@
1
- export { default as PlusCircleBlueIcon } from './PlusCircleBlueIcon'
@@ -1 +0,0 @@
1
- export { default as PlusCircleBlueIcon } from './PlusCircleBlueIcon.js'
@@ -1,4 +0,0 @@
1
- {
2
- "type": "module",
3
- "sideEffects": false
4
- }
@@ -1 +0,0 @@
1
- export { default as PlusCircleBlueIcon } from './PlusCircleBlueIcon'
@@ -1 +0,0 @@
1
- module.exports.PlusCircleBlueIcon = require("./PlusCircleBlueIcon.js")
@@ -1,4 +0,0 @@
1
- {
2
- "module": "./esm/index.js",
3
- "sideEffects": false
4
- }
@@ -1,4 +0,0 @@
1
- import * as React from 'react';
2
- declare const AlertBellGradientBlueIcon: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & { title?: string, titleId?: string }>;
3
- export default AlertBellGradientBlueIcon;
4
-
@@ -1,49 +0,0 @@
1
- const React = require("react");
2
- function AlertBellGradientBlueIcon({
3
- title,
4
- titleId,
5
- ...props
6
- }, svgRef) {
7
- return /*#__PURE__*/React.createElement("svg", Object.assign({
8
- width: 24,
9
- height: 24,
10
- fill: "none",
11
- xmlns: "http://www.w3.org/2000/svg",
12
- ref: svgRef,
13
- "aria-labelledby": titleId
14
- }, props), title ? /*#__PURE__*/React.createElement("title", {
15
- id: titleId
16
- }, title) : null, /*#__PURE__*/React.createElement("path", {
17
- d: "M9.542 3.842a2.5 2.5 0 014.916 0c1.076.35 1.837.949 2.367 1.714.573.827.853 1.816 1.01 2.81.127.801.179 1.644.228 2.436l.034.547c.065.966.151 1.815.377 2.493.297.891.713 1.325 1.113 1.724l.06.06c.397.393.846.838.968 1.66.127.858-.47 1.407-1.058 1.575-.488.14-1.142.14-1.526.139H5.969c-.383 0-1.036 0-1.528-.144-.6-.166-1.176-.722-1.057-1.565.116-.827.568-1.274.967-1.668l.058-.058c.402-.399.82-.833 1.117-1.723.226-.678.312-1.527.377-2.493l.034-.547c.049-.792.1-1.635.228-2.436.157-.994.437-1.983 1.01-2.81.53-.765 1.291-1.365 2.367-1.714z",
18
- fill: "url(#paint0_radial)"
19
- }), /*#__PURE__*/React.createElement("path", {
20
- d: "M15 20a3 3 0 11-6 0h6z",
21
- fill: "url(#paint1_radial)"
22
- }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
23
- id: "paint0_radial",
24
- cx: 0,
25
- cy: 0,
26
- r: 1,
27
- gradientUnits: "userSpaceOnUse",
28
- gradientTransform: "matrix(17.26374 -21.19997 20.76047 16.90583 3.368 23)"
29
- }, /*#__PURE__*/React.createElement("stop", {
30
- stopColor: "#5BCAFF"
31
- }), /*#__PURE__*/React.createElement("stop", {
32
- offset: 1,
33
- stopColor: "#06F"
34
- })), /*#__PURE__*/React.createElement("radialGradient", {
35
- id: "paint1_radial",
36
- cx: 0,
37
- cy: 0,
38
- r: 1,
39
- gradientUnits: "userSpaceOnUse",
40
- gradientTransform: "matrix(17.26374 -21.19997 20.76047 16.90583 3.368 23)"
41
- }, /*#__PURE__*/React.createElement("stop", {
42
- stopColor: "#5BCAFF"
43
- }), /*#__PURE__*/React.createElement("stop", {
44
- offset: 1,
45
- stopColor: "#06F"
46
- }))));
47
- }
48
- const ForwardRef = React.forwardRef(AlertBellGradientBlueIcon);
49
- module.exports = ForwardRef;
@@ -1,4 +0,0 @@
1
- import * as React from 'react';
2
- declare const LoadingBlueIcon: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & { title?: string, titleId?: string }>;
3
- export default LoadingBlueIcon;
4
-
@@ -1,32 +0,0 @@
1
- const React = require("react");
2
- function LoadingBlueIcon({
3
- title,
4
- titleId,
5
- ...props
6
- }, svgRef) {
7
- return /*#__PURE__*/React.createElement("svg", Object.assign({
8
- width: 24,
9
- height: 24,
10
- xmlns: "http://www.w3.org/2000/svg",
11
- ref: svgRef,
12
- "aria-labelledby": titleId
13
- }, props), title ? /*#__PURE__*/React.createElement("title", {
14
- id: titleId
15
- }, title) : null, /*#__PURE__*/React.createElement("g", {
16
- transform: "translate(4 4)",
17
- stroke: "#0096FF",
18
- strokeWidth: 2,
19
- fill: "none",
20
- fillRule: "evenodd"
21
- }, /*#__PURE__*/React.createElement("circle", {
22
- opacity: 0.4,
23
- cx: 8,
24
- cy: 8,
25
- r: 8
26
- }), /*#__PURE__*/React.createElement("path", {
27
- d: "M4.36 15.124h0A8 8 0 108.004 0",
28
- strokeLinecap: "round"
29
- })));
30
- }
31
- const ForwardRef = React.forwardRef(LoadingBlueIcon);
32
- module.exports = ForwardRef;
@@ -1,4 +0,0 @@
1
- import * as React from 'react';
2
- declare const PlusAddCreateNewGradientGrayIcon: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & { title?: string, titleId?: string }>;
3
- export default PlusAddCreateNewGradientGrayIcon;
4
-
@@ -1,34 +0,0 @@
1
- const React = require("react");
2
- function PlusAddCreateNewGradientGrayIcon({
3
- title,
4
- titleId,
5
- ...props
6
- }, svgRef) {
7
- return /*#__PURE__*/React.createElement("svg", Object.assign({
8
- width: 24,
9
- height: 24,
10
- fill: "none",
11
- xmlns: "http://www.w3.org/2000/svg",
12
- ref: svgRef,
13
- "aria-labelledby": titleId
14
- }, props), title ? /*#__PURE__*/React.createElement("title", {
15
- id: titleId
16
- }, title) : null, /*#__PURE__*/React.createElement("path", {
17
- d: "M12 4a.575.575 0 00-.575.575v6.85h-6.85a.575.575 0 100 1.15h6.85v6.85a.575.575 0 001.15 0v-6.85h6.85a.575.575 0 100-1.15h-6.85v-6.85A.575.575 0 0012 4z",
18
- fill: "url(#paint0_radial)"
19
- }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
20
- id: "paint0_radial",
21
- cx: 0,
22
- cy: 0,
23
- r: 1,
24
- gradientUnits: "userSpaceOnUse",
25
- gradientTransform: "rotate(-45 26.142 5.172) scale(22.6274)"
26
- }, /*#__PURE__*/React.createElement("stop", {
27
- stopColor: "#C0C7D1"
28
- }), /*#__PURE__*/React.createElement("stop", {
29
- offset: 1,
30
- stopColor: "#818B9C"
31
- }))));
32
- }
33
- const ForwardRef = React.forwardRef(PlusAddCreateNewGradientGrayIcon);
34
- module.exports = ForwardRef;
@@ -1,4 +0,0 @@
1
- import * as React from 'react';
2
- declare const AlertBellGradientBlueIcon: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & { title?: string, titleId?: string }>;
3
- export default AlertBellGradientBlueIcon;
4
-
@@ -1,49 +0,0 @@
1
- import * as React from "react";
2
- function AlertBellGradientBlueIcon({
3
- title,
4
- titleId,
5
- ...props
6
- }, svgRef) {
7
- return /*#__PURE__*/React.createElement("svg", Object.assign({
8
- width: 24,
9
- height: 24,
10
- fill: "none",
11
- xmlns: "http://www.w3.org/2000/svg",
12
- ref: svgRef,
13
- "aria-labelledby": titleId
14
- }, props), title ? /*#__PURE__*/React.createElement("title", {
15
- id: titleId
16
- }, title) : null, /*#__PURE__*/React.createElement("path", {
17
- d: "M9.542 3.842a2.5 2.5 0 014.916 0c1.076.35 1.837.949 2.367 1.714.573.827.853 1.816 1.01 2.81.127.801.179 1.644.228 2.436l.034.547c.065.966.151 1.815.377 2.493.297.891.713 1.325 1.113 1.724l.06.06c.397.393.846.838.968 1.66.127.858-.47 1.407-1.058 1.575-.488.14-1.142.14-1.526.139H5.969c-.383 0-1.036 0-1.528-.144-.6-.166-1.176-.722-1.057-1.565.116-.827.568-1.274.967-1.668l.058-.058c.402-.399.82-.833 1.117-1.723.226-.678.312-1.527.377-2.493l.034-.547c.049-.792.1-1.635.228-2.436.157-.994.437-1.983 1.01-2.81.53-.765 1.291-1.365 2.367-1.714z",
18
- fill: "url(#paint0_radial)"
19
- }), /*#__PURE__*/React.createElement("path", {
20
- d: "M15 20a3 3 0 11-6 0h6z",
21
- fill: "url(#paint1_radial)"
22
- }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
23
- id: "paint0_radial",
24
- cx: 0,
25
- cy: 0,
26
- r: 1,
27
- gradientUnits: "userSpaceOnUse",
28
- gradientTransform: "matrix(17.26374 -21.19997 20.76047 16.90583 3.368 23)"
29
- }, /*#__PURE__*/React.createElement("stop", {
30
- stopColor: "#5BCAFF"
31
- }), /*#__PURE__*/React.createElement("stop", {
32
- offset: 1,
33
- stopColor: "#06F"
34
- })), /*#__PURE__*/React.createElement("radialGradient", {
35
- id: "paint1_radial",
36
- cx: 0,
37
- cy: 0,
38
- r: 1,
39
- gradientUnits: "userSpaceOnUse",
40
- gradientTransform: "matrix(17.26374 -21.19997 20.76047 16.90583 3.368 23)"
41
- }, /*#__PURE__*/React.createElement("stop", {
42
- stopColor: "#5BCAFF"
43
- }), /*#__PURE__*/React.createElement("stop", {
44
- offset: 1,
45
- stopColor: "#06F"
46
- }))));
47
- }
48
- const ForwardRef = React.forwardRef(AlertBellGradientBlueIcon);
49
- export default ForwardRef;
@@ -1,4 +0,0 @@
1
- import * as React from 'react';
2
- declare const LoadingBlueIcon: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & { title?: string, titleId?: string }>;
3
- export default LoadingBlueIcon;
4
-
@@ -1,32 +0,0 @@
1
- import * as React from "react";
2
- function LoadingBlueIcon({
3
- title,
4
- titleId,
5
- ...props
6
- }, svgRef) {
7
- return /*#__PURE__*/React.createElement("svg", Object.assign({
8
- width: 24,
9
- height: 24,
10
- xmlns: "http://www.w3.org/2000/svg",
11
- ref: svgRef,
12
- "aria-labelledby": titleId
13
- }, props), title ? /*#__PURE__*/React.createElement("title", {
14
- id: titleId
15
- }, title) : null, /*#__PURE__*/React.createElement("g", {
16
- transform: "translate(4 4)",
17
- stroke: "#0096FF",
18
- strokeWidth: 2,
19
- fill: "none",
20
- fillRule: "evenodd"
21
- }, /*#__PURE__*/React.createElement("circle", {
22
- opacity: 0.4,
23
- cx: 8,
24
- cy: 8,
25
- r: 8
26
- }), /*#__PURE__*/React.createElement("path", {
27
- d: "M4.36 15.124h0A8 8 0 108.004 0",
28
- strokeLinecap: "round"
29
- })));
30
- }
31
- const ForwardRef = React.forwardRef(LoadingBlueIcon);
32
- export default ForwardRef;
@@ -1,4 +0,0 @@
1
- import * as React from 'react';
2
- declare const PlusAddCreateNewGradientGrayIcon: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & { title?: string, titleId?: string }>;
3
- export default PlusAddCreateNewGradientGrayIcon;
4
-
@@ -1,34 +0,0 @@
1
- import * as React from "react";
2
- function PlusAddCreateNewGradientGrayIcon({
3
- title,
4
- titleId,
5
- ...props
6
- }, svgRef) {
7
- return /*#__PURE__*/React.createElement("svg", Object.assign({
8
- width: 24,
9
- height: 24,
10
- fill: "none",
11
- xmlns: "http://www.w3.org/2000/svg",
12
- ref: svgRef,
13
- "aria-labelledby": titleId
14
- }, props), title ? /*#__PURE__*/React.createElement("title", {
15
- id: titleId
16
- }, title) : null, /*#__PURE__*/React.createElement("path", {
17
- d: "M12 4a.575.575 0 00-.575.575v6.85h-6.85a.575.575 0 100 1.15h6.85v6.85a.575.575 0 001.15 0v-6.85h6.85a.575.575 0 100-1.15h-6.85v-6.85A.575.575 0 0012 4z",
18
- fill: "url(#paint0_radial)"
19
- }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
20
- id: "paint0_radial",
21
- cx: 0,
22
- cy: 0,
23
- r: 1,
24
- gradientUnits: "userSpaceOnUse",
25
- gradientTransform: "rotate(-45 26.142 5.172) scale(22.6274)"
26
- }, /*#__PURE__*/React.createElement("stop", {
27
- stopColor: "#C0C7D1"
28
- }), /*#__PURE__*/React.createElement("stop", {
29
- offset: 1,
30
- stopColor: "#818B9C"
31
- }))));
32
- }
33
- const ForwardRef = React.forwardRef(PlusAddCreateNewGradientGrayIcon);
34
- export default ForwardRef;
@@ -1,3 +0,0 @@
1
- export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
2
- export { default as LoadingBlueIcon } from './LoadingBlueIcon'
3
- export { default as PlusAddCreateNewGradientGrayIcon } from './PlusAddCreateNewGradientGrayIcon'
@@ -1,3 +0,0 @@
1
- export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon.js'
2
- export { default as LoadingBlueIcon } from './LoadingBlueIcon.js'
3
- export { default as PlusAddCreateNewGradientGrayIcon } from './PlusAddCreateNewGradientGrayIcon.js'
@@ -1,4 +0,0 @@
1
- {
2
- "type": "module",
3
- "sideEffects": false
4
- }
@@ -1,3 +0,0 @@
1
- export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
2
- export { default as LoadingBlueIcon } from './LoadingBlueIcon'
3
- export { default as PlusAddCreateNewGradientGrayIcon } from './PlusAddCreateNewGradientGrayIcon'
@@ -1,3 +0,0 @@
1
- module.exports.AlertBellGradientBlueIcon = require("./AlertBellGradientBlueIcon.js")
2
- module.exports.LoadingBlueIcon = require("./LoadingBlueIcon.js")
3
- module.exports.PlusAddCreateNewGradientGrayIcon = require("./PlusAddCreateNewGradientGrayIcon.js")
@@ -1,4 +0,0 @@
1
- {
2
- "module": "./esm/index.js",
3
- "sideEffects": false
4
- }
@@ -1,4 +0,0 @@
1
- import * as React from 'react';
2
- declare const AlertBellGradientBlueIcon: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & { title?: string, titleId?: string }>;
3
- export default AlertBellGradientBlueIcon;
4
-