@corva/ui 0.100.0-20 → 0.100.0-22

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/README.md CHANGED
@@ -1,41 +1,51 @@
1
1
  # @corva/ui
2
+
2
3
  <a href="https://storybook.dev.corva.ai/" target="_blank"><img src="https://raw.githubusercontent.com/storybooks/brand/master/badge/badge-storybook.svg"></a>
3
4
  [![npm version](https://img.shields.io/npm/v/@corva/ui/latest?color=green&label=%40latest&style=flat-square)](https://www.npmjs.com/package/@corva/ui)
4
5
  [![npm version](https://img.shields.io/npm/v/@corva/ui/next?color=yellow&label=%40next&style=flat-square)](https://www.npmjs.com/package/@corva/ui)
5
6
  [![npm version](https://img.shields.io/npm/v/@corva/ui/dev?color=orange&label=%40dev&style=flat-square)](https://www.npmjs.com/package/@corva/ui)
6
7
 
7
-
8
8
  develop: [![Publish](https://github.com/corva-ai/corva-ui/actions/workflows/publish.yml/badge.svg)](https://github.com/corva-ai/corva-ui/actions/workflows/publish.yml)
9
9
 
10
-
11
- This repo contains components/utils which are shared for Corva ui apps.
10
+ This repo contains components/utils which are shared for Corva UI apps.
12
11
 
13
12
  ### When you need some library changes
14
- Currently @corva/ui library is owned by the Dev Center team, but is developed by every Corva FE developer. So, if you need to make some update in it - you can do it by yourself. For small updates - just make a PR - and someone from the Dev Center team will review it.
15
13
 
16
- If it's something pretty big - it's better to reach out someone from the Dev Center team first, to tell what you need and get feedback how to better do it. Otherwise - you risk that your huge PR on which you worked a week can be rejected because it can be not consistent with the rest of the lib
14
+ Currently, `@corva/ui` library is owned by the Dev Center team, but is developed by every Corva FE developer. So, if you
15
+ need to make some update in it - you can do it by yourself. For small updates - just make a PR - and someone from the
16
+ Dev Center team will review it.
17
+
18
+ If it's something pretty big - it's better to reach out someone from the Dev Center team first, to tell what you need
19
+ and get feedback how to better do it. Otherwise - you risk that your huge PR on which you worked a week can be rejected
20
+ because it can be not consistent with the rest of the lib
17
21
 
18
22
  ### Release & deploy of the library
19
- How to bump the version? What should be the branch name? And other more advanced cases, like release/hotfixes. The guideline for all of these cases can be found [here (Corva access required)](https://www.notion.so/corva/corva-ui-d510f545ffb74c9bafd6b1bfbc0b99bf)
20
23
 
24
+ How to bump the version? What should be the branch name? And other more advanced cases, like release/hotfixes. The
25
+ guideline for all of these cases can be
26
+ found [here (Corva access required)](https://www.notion.so/corva/corva-ui-d510f545ffb74c9bafd6b1bfbc0b99bf)
21
27
 
22
28
  ### Stories for every public component
23
- Every public @corva/ui component has a corresponding `.stories.js` file that describes the component. When you work with public @corva/ui
29
+
30
+ Every public `@corva/ui` component has a corresponding `.stories.js` file that describes the component. When you work
31
+ with
32
+ public `@corva/ui`
24
33
  components - please also update it's `stories.js` file when it's necessary
25
34
 
26
35
  ## Build-time variables
27
36
 
28
- | Name | Default Value | Required |
29
- |----------|-----------|----------|
30
- | REACT_APP_API_URL | https://api.qa.corva.ai | No |
31
- | REACT_APP_DATA_API_URL | https://data.qa.corva.ai | No |
32
- | REACT_APP_CDN_URL | https://cdn.corva.ai | No |
37
+ | Name | Default Value | Required |
38
+ |------------------------|--------------------------|----------|
39
+ | REACT_APP_API_URL | https://api.qa.corva.ai | No |
40
+ | REACT_APP_DATA_API_URL | https://data.qa.corva.ai | No |
41
+ | REACT_APP_CDN_URL | https://cdn.corva.ai | No |
33
42
 
34
43
  ## Local development
35
44
 
36
-
37
- - `yarn storybook` will launch local storybook server which is convenient to use for components testing when you work on public components. That's a playground for building public components.
38
- - `yarn start` will open ExampleApp.js in your browser. That's a playground for building non-public components (such components will be moved from @corva/ui soon)
45
+ - `yarn storybook` will launch local storybook server which is convenient to use for components testing when you work on
46
+ public components. That's a playground for building public components.
47
+ - `yarn start` will open ExampleApp.js in your browser. That's a playground for building non-public components (such
48
+ components will be moved from @corva/ui soon)
39
49
 
40
50
  ## Link local `@corva/ui` to your app
41
51
 
@@ -43,46 +53,56 @@ components - please also update it's `stories.js` file when it's necessary
43
53
 
44
54
  * Make sure you are using `@corva/ui` with latest updates from `development` branch
45
55
 
46
- * If your app is using `getWebpackConfig` from `@corva/ui` instead of `@corva/dc-platform-shared`, migrate it according to [this guide](https://www.notion.so/corva/Migration-to-corva-dc-platform-shared-721cc822e23c4c43a7630b73fdeec3d9)
56
+ * If your app is using `getWebpackConfig` from `@corva/ui` instead of `@corva/dc-platform-shared`, migrate it according
57
+ to [this guide](https://www.notion.so/corva/Migration-to-corva-dc-platform-shared-721cc822e23c4c43a7630b73fdeec3d9)
47
58
 
48
59
  ### Steps to link your local DC app**
49
60
 
50
61
  1. Run `yarn build-dev` or `yarn build-watch` in @corva/ui repo
51
- <br/>***Note:** `yarn build` will not work for linking*
62
+ <br/>***Note:** `yarn build` will not work for linking*
52
63
 
53
64
  2. `cd ./dist` and run `yarn link` in @corva/ui dist folder (only first time)
54
65
 
55
66
  3. Run `yarn link @corva/ui` in your local DC app root folder
56
67
 
57
- 4. Add following parameters to the `config-overrides.js`.<br/>It should avoid the issue of mulitple React instances and the MUI styling issue
58
- ```
68
+ 4. Add following parameters to the `config-overrides.js`.<br/>It should avoid the issue of multiple React instances and
69
+ the MUI styling issue
70
+
71
+ ```js
59
72
  {
60
- resolve: {
61
- alias: {
62
- react: path.resolve('./node_modules/react'),
63
- '@material-ui': resolve('./node_modules/@material-ui'),
64
- }
73
+ resolve: {
74
+ alias: {
75
+ react: path.resolve('./node_modules/react'),
76
+ '@material-ui'
77
+ :
78
+ resolve('./node_modules/@material-ui'),
65
79
  }
80
+ }
66
81
  }
67
82
  ```
68
83
 
69
-
70
84
  5. Run `yarn start` in your local DC app root folder
71
85
 
72
- ***Note:** npm link will not install @corva/ui dependencies in your node modules folder.*
73
- If you want to debug a change in @corva/ui dependencies, you should use `yarn add file:../corva-ui/dist`, this will install new dependencies.
86
+ ***Note:** npm link will not install `@corva/ui` dependencies in your node modules folder.*
87
+ If you want to debug a change in `@corva/ui` dependencies, you should use `yarn add file:../corva-ui/dist`, this will
88
+ install new dependencies.
74
89
 
75
90
  ### Troubleshooting
76
91
 
77
92
  #### Failed to compile.<br />`Module not found: Can't resolve '@corva/ui' in ...`
78
- Most likely you need to [migrate to `@corva/dc-platform-shared`](https://www.notion.so/corva/Migration-to-corva-dc-platform-shared-721cc822e23c4c43a7630b73fdeec3d9) for cjs webpack config usage
93
+
94
+ Most likely you need to [migrate to
95
+ `@corva/dc-platform-shared`](https://www.notion.so/corva/Migration-to-corva-dc-platform-shared-721cc822e23c4c43a7630b73fdeec3d9)
96
+ for cjs webpack config usage
79
97
 
80
98
  #### Error.<br/>`Invalid hook call. Hooks can only be called inside of the body of a function component...`
81
99
 
82
- In that case, your bundler might “see” two Reacts — one in application folder and one in your library folder. Assuming myapp and mylib are sibling folders, one possible fix is to run npm link ../myapp/node_modules/react from mylib. This should make the library use the application’s React copy.
100
+ In that case, your bundler might “see” two Reacts — one in application folder and one in your library folder. Assuming
101
+ myapp and mylib are sibling folders, one possible fix is to run npm link ../myapp/node_modules/react from mylib. This
102
+ should make the library use the application’s React copy.
83
103
 
104
+ Or change the webpack configuration in `config-overrides.js` file in your app. (Don't commit the changes of this file)
84
105
 
85
- Or change the webpack configuration in `config-overrides.js` file in your app. (Don't commit the changes of this file)
86
106
  ```
87
107
  {
88
108
  resolve: {
@@ -94,7 +114,9 @@ Most likely you need to [migrate to `@corva/dc-platform-shared`](https://www.not
94
114
  ```
95
115
 
96
116
  #### Material UI styles are corrupted
117
+
97
118
  Add the following parameter to the `config-overrides.js` file in your app
119
+
98
120
  ```
99
121
  {
100
122
  resolve: {
@@ -104,3 +126,17 @@ Add the following parameter to the `config-overrides.js` file in your app
104
126
  }
105
127
  }
106
128
  ```
129
+
130
+ ### CI/CD
131
+
132
+ #### Stale workflow
133
+
134
+ To prevent pull request from piling up and save on resources, there is a [stale workflow](./.github/workflows/stale.yml)
135
+ running in this repository. It will automatically run on schedule to mark PR's that have not received any updates in 14
136
+ days as stale, marking them with label and leaving a comment. More importantly, preview environment for stale PRs are
137
+ removed. To "unstale" the PR, you either need to make any change to it, push new commit or just remove the `stale`
138
+ label.
139
+ If for some reason your PR does need to stay not stale for a long time, you can add `never-stale` label to it.
140
+
141
+ > [!IMPORTANT]
142
+ > Stale pull requests will be deleted after 180 days!
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("react/jsx-runtime"),l=require("../../WithCustomSize.js").withCustomIconSize((function(l){var C=l.width,d=void 0===C?24:C,i=l.height,r=void 0===i?24:i,t=l.className,o=l.fill;return e.jsxs("svg",{className:t,width:d,height:r,viewBox:"0 0 24 24",fill:o,xmlns:"http://www.w3.org/2000/svg",children:[e.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M13.25 17.5C13.25 17.0858 13.5858 16.75 14 16.75H22C22.4142 16.75 22.75 17.0858 22.75 17.5C22.75 17.9142 22.4142 18.25 22 18.25H14C13.5858 18.25 13.25 17.9142 13.25 17.5Z"}),e.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M1.25 15C1.25 14.0335 2.03351 13.25 3 13.25H9C9.96651 13.25 10.75 14.0335 10.75 15V21C10.75 21.9665 9.96651 22.75 9 22.75H3C2.03351 22.75 1.25 21.9665 1.25 21V15ZM3 14.75C2.86192 14.75 2.75 14.8619 2.75 15V21C2.75 21.1381 2.86192 21.25 3 21.25H9C9.13809 21.25 9.25 21.1381 9.25 21V15C9.25 14.8619 9.13809 14.75 9 14.75H3Z"}),e.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M13.25 3C13.25 2.03351 14.0335 1.25 15 1.25H21C21.9665 1.25 22.75 2.03351 22.75 3V9C22.75 9.96651 21.9665 10.75 21 10.75H15C14.0335 10.75 13.25 9.96651 13.25 9V3ZM15 2.75C14.8619 2.75 14.75 2.86192 14.75 3V9C14.75 9.13809 14.8619 9.25 15 9.25H21C21.1381 9.25 21.25 9.13809 21.25 9V3C21.25 2.86192 21.1381 2.75 21 2.75H15Z"}),e.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M1.25 3C1.25 2.0335 2.0335 1.25 3 1.25H9C9.96652 1.25 10.75 2.03351 10.75 3V9C10.75 9.96651 9.96651 10.75 9 10.75H3C2.03351 10.75 1.25 9.96652 1.25 9V3ZM3 2.75C2.86193 2.75 2.75 2.86193 2.75 3V9C2.75 9.13808 2.86192 9.25 3 9.25H9C9.13809 9.25 9.25 9.13809 9.25 9V3C9.25 2.86192 9.13808 2.75 9 2.75H3Z"}),e.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M18 13C18.4142 13 18.75 13.3358 18.75 13.75L18.75 21.75C18.75 22.1642 18.4142 22.5 18 22.5C17.5858 22.5 17.25 22.1642 17.25 21.75L17.25 17.75L17.25 13.75C17.25 13.3358 17.5858 13 18 13Z"})]})}));exports.MoreAppCustomIcon=l;
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("react/jsx-runtime"),l=require("../../WithCustomSize.js").withCustomIconSize((function(l){var C=l.width,d=void 0===C?24:C,i=l.height,t=void 0===i?24:i,o=l.className,s=l.fill;return e.jsxs("svg",{className:o,width:d,height:t,viewBox:"0 0 24 24",fill:s,xmlns:"http://www.w3.org/2000/svg",children:[e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13.25 17.5C13.25 17.0858 13.5858 16.75 14 16.75H22C22.4142 16.75 22.75 17.0858 22.75 17.5C22.75 17.9142 22.4142 18.25 22 18.25H14C13.5858 18.25 13.25 17.9142 13.25 17.5Z"}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.25 15C1.25 14.0335 2.03351 13.25 3 13.25H9C9.96651 13.25 10.75 14.0335 10.75 15V21C10.75 21.9665 9.96651 22.75 9 22.75H3C2.03351 22.75 1.25 21.9665 1.25 21V15ZM3 14.75C2.86192 14.75 2.75 14.8619 2.75 15V21C2.75 21.1381 2.86192 21.25 3 21.25H9C9.13809 21.25 9.25 21.1381 9.25 21V15C9.25 14.8619 9.13809 14.75 9 14.75H3Z"}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13.25 3C13.25 2.03351 14.0335 1.25 15 1.25H21C21.9665 1.25 22.75 2.03351 22.75 3V9C22.75 9.96651 21.9665 10.75 21 10.75H15C14.0335 10.75 13.25 9.96651 13.25 9V3ZM15 2.75C14.8619 2.75 14.75 2.86192 14.75 3V9C14.75 9.13809 14.8619 9.25 15 9.25H21C21.1381 9.25 21.25 9.13809 21.25 9V3C21.25 2.86192 21.1381 2.75 21 2.75H15Z"}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.25 3C1.25 2.0335 2.0335 1.25 3 1.25H9C9.96652 1.25 10.75 2.03351 10.75 3V9C10.75 9.96651 9.96651 10.75 9 10.75H3C2.03351 10.75 1.25 9.96652 1.25 9V3ZM3 2.75C2.86193 2.75 2.75 2.86193 2.75 3V9C2.75 9.13808 2.86192 9.25 3 9.25H9C9.13809 9.25 9.25 9.13809 9.25 9V3C9.25 2.86192 9.13808 2.75 9 2.75H3Z"}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18 13C18.4142 13 18.75 13.3358 18.75 13.75L18.75 21.75C18.75 22.1642 18.4142 22.5 18 22.5C17.5858 22.5 17.25 22.1642 17.25 21.75L17.25 17.75L17.25 13.75C17.25 13.3358 17.5858 13 18 13Z"})]})}));exports.MoreAppCustomIcon=l;
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("react/jsx-runtime"),C=require("../../WithCustomSize.js").withCustomIconSize((function(C){var l=C.width,i=void 0===l?24:l,d=C.height,t=void 0===d?24:d,r=C.className,o=C.fill;return e.jsxs("svg",{width:i,height:t,className:r,viewBox:"0 0 ".concat(i," ").concat(t),fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[e.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M2.46145 0.112124C2.61101 0.261623 2.61101 0.504009 2.46145 0.653507L0.924976 2.18932L2.46106 3.72042C2.61084 3.86971 2.61118 4.11209 2.46183 4.2618C2.31248 4.41151 2.06999 4.41185 1.92021 4.26257L0.112555 2.46078C0.0405648 2.38902 7.19867e-05 2.2916 9.58885e-08 2.18998C-7.17949e-05 2.08835 0.0402831 1.99087 0.112172 1.91901L1.91983 0.112124C2.06939 -0.0373747 2.31188 -0.0373747 2.46145 0.112124Z",fill:o}),e.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M9.53855 0.112124C9.68812 -0.0373747 9.93061 -0.0373747 10.0802 0.112124L11.8878 1.91901C11.9597 1.99087 12.0001 2.08835 12 2.18998C11.9999 2.2916 11.9594 2.38902 11.8874 2.46078L10.0798 4.26257C9.93001 4.41185 9.68752 4.41151 9.53817 4.2618C9.38882 4.11209 9.38916 3.86971 9.53894 3.72042L11.075 2.18932L9.53855 0.653508C9.38899 0.504009 9.38899 0.261623 9.53855 0.112124Z",fill:o}),e.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M3.98792 9.5345C4.13748 9.385 4.37997 9.385 4.52953 9.5345L6.066 11.0703L7.59775 9.53488C7.7471 9.38517 7.98959 9.38483 8.13936 9.53411C8.28913 9.6834 8.28948 9.92579 8.14013 10.0755L6.33757 11.8824C6.26579 11.9543 6.16832 11.9948 6.06665 11.9949C5.96499 11.995 5.86746 11.9546 5.79558 11.8828L3.98792 10.0759C3.83835 9.92638 3.83835 9.684 3.98792 9.5345Z",fill:o}),e.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M0.12766 2.18971C0.12766 1.97828 0.299125 1.80689 0.510638 1.80689H11.617C11.8285 1.80689 12 1.97855 12 2.18998C12 2.4014 11.8285 2.57252 11.617 2.57252H0.510638C0.299125 2.57252 0.12766 2.40113 0.12766 2.18971Z",fill:o}),e.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M6.06128 1.80689C6.27279 1.80689 6.44426 1.97828 6.44426 2.18971V11.6121C6.44426 11.8235 6.27279 11.9949 6.06128 11.9949C5.84976 11.9949 5.6783 11.8235 5.6783 11.6121V2.18971C5.6783 1.97828 5.84976 1.80689 6.06128 1.80689Z",fill:o}),e.jsx("path",{d:"M12 2.18998C12 2.13894 11.9898 2.08762 11.9694 2.04168C11.9489 1.99575 11.9236 1.95474 11.8878 1.91901L10.0802 0.112124C9.93208 -0.035898 9.68664 -0.0358979 9.53855 0.112124C9.39047 0.260146 9.39047 0.505485 9.53855 0.653508L10.6928 1.80179H1.30723L2.46145 0.653507C2.60953 0.505485 2.60953 0.260146 2.46145 0.112124C2.31336 -0.035898 2.06792 -0.035898 1.91983 0.112124L0.112172 1.91901C0.0406825 1.99047 9.58885e-08 2.08789 9.58885e-08 2.18998C9.58885e-08 2.29206 0.0408511 2.38877 0.11234 2.46023L1.92 4.26712C1.9966 4.34368 2.09362 4.37941 2.19064 4.37941C2.28766 4.37941 2.38468 4.34368 2.46128 4.26712C2.60936 4.1191 2.60936 3.8741 2.46128 3.72607L1.30723 2.57763H5.6783V10.6933L4.52426 9.53977C4.37617 9.39175 4.13106 9.39175 3.98298 9.53977C3.83489 9.68779 3.83489 9.93279 3.98298 10.0808L5.79064 11.8877C5.82638 11.9234 5.86723 11.949 5.91319 11.9694C5.95915 11.9898 6.01021 12 6.06128 12C6.11234 12 6.1634 11.9898 6.20936 11.9694C6.25532 11.949 6.29617 11.9234 6.33191 11.8877L8.13958 10.0808C8.28766 9.93279 8.28766 9.68779 8.13958 9.53977C7.99149 9.39175 7.74638 9.39175 7.5983 9.53977L6.44426 10.6933V2.57252H10.6877L9.53362 3.72097C9.38553 3.86899 9.38553 4.11399 9.53362 4.26202C9.61021 4.33858 9.70723 4.37431 9.80426 4.37431C9.90128 4.37431 9.9983 4.33858 10.0749 4.26202L11.8826 2.45513C11.9183 2.4194 11.9438 2.37856 11.9643 2.33262C11.9847 2.28669 11.9949 2.23564 11.9949 2.1846L12 2.18998Z",fill:o})]})}));exports.SimulFracCustomIcon=C;
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("react/jsx-runtime"),C=require("../../WithCustomSize.js").withCustomIconSize((function(C){var l=C.width,i=void 0===l?24:l,d=C.height,t=void 0===d?24:d,o=C.className,s=C.fill;return e.jsxs("svg",{width:i,height:t,className:o,viewBox:"0 0 ".concat(i," ").concat(t),fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.46145 0.112124C2.61101 0.261623 2.61101 0.504009 2.46145 0.653507L0.924976 2.18932L2.46106 3.72042C2.61084 3.86971 2.61118 4.11209 2.46183 4.2618C2.31248 4.41151 2.06999 4.41185 1.92021 4.26257L0.112555 2.46078C0.0405648 2.38902 7.19867e-05 2.2916 9.58885e-08 2.18998C-7.17949e-05 2.08835 0.0402831 1.99087 0.112172 1.91901L1.91983 0.112124C2.06939 -0.0373747 2.31188 -0.0373747 2.46145 0.112124Z",fill:s}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.53855 0.112124C9.68812 -0.0373747 9.93061 -0.0373747 10.0802 0.112124L11.8878 1.91901C11.9597 1.99087 12.0001 2.08835 12 2.18998C11.9999 2.2916 11.9594 2.38902 11.8874 2.46078L10.0798 4.26257C9.93001 4.41185 9.68752 4.41151 9.53817 4.2618C9.38882 4.11209 9.38916 3.86971 9.53894 3.72042L11.075 2.18932L9.53855 0.653508C9.38899 0.504009 9.38899 0.261623 9.53855 0.112124Z",fill:s}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.98792 9.5345C4.13748 9.385 4.37997 9.385 4.52953 9.5345L6.066 11.0703L7.59775 9.53488C7.7471 9.38517 7.98959 9.38483 8.13936 9.53411C8.28913 9.6834 8.28948 9.92579 8.14013 10.0755L6.33757 11.8824C6.26579 11.9543 6.16832 11.9948 6.06665 11.9949C5.96499 11.995 5.86746 11.9546 5.79558 11.8828L3.98792 10.0759C3.83835 9.92638 3.83835 9.684 3.98792 9.5345Z",fill:s}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0.12766 2.18971C0.12766 1.97828 0.299125 1.80689 0.510638 1.80689H11.617C11.8285 1.80689 12 1.97855 12 2.18998C12 2.4014 11.8285 2.57252 11.617 2.57252H0.510638C0.299125 2.57252 0.12766 2.40113 0.12766 2.18971Z",fill:s}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.06128 1.80689C6.27279 1.80689 6.44426 1.97828 6.44426 2.18971V11.6121C6.44426 11.8235 6.27279 11.9949 6.06128 11.9949C5.84976 11.9949 5.6783 11.8235 5.6783 11.6121V2.18971C5.6783 1.97828 5.84976 1.80689 6.06128 1.80689Z",fill:s}),e.jsx("path",{d:"M12 2.18998C12 2.13894 11.9898 2.08762 11.9694 2.04168C11.9489 1.99575 11.9236 1.95474 11.8878 1.91901L10.0802 0.112124C9.93208 -0.035898 9.68664 -0.0358979 9.53855 0.112124C9.39047 0.260146 9.39047 0.505485 9.53855 0.653508L10.6928 1.80179H1.30723L2.46145 0.653507C2.60953 0.505485 2.60953 0.260146 2.46145 0.112124C2.31336 -0.035898 2.06792 -0.035898 1.91983 0.112124L0.112172 1.91901C0.0406825 1.99047 9.58885e-08 2.08789 9.58885e-08 2.18998C9.58885e-08 2.29206 0.0408511 2.38877 0.11234 2.46023L1.92 4.26712C1.9966 4.34368 2.09362 4.37941 2.19064 4.37941C2.28766 4.37941 2.38468 4.34368 2.46128 4.26712C2.60936 4.1191 2.60936 3.8741 2.46128 3.72607L1.30723 2.57763H5.6783V10.6933L4.52426 9.53977C4.37617 9.39175 4.13106 9.39175 3.98298 9.53977C3.83489 9.68779 3.83489 9.93279 3.98298 10.0808L5.79064 11.8877C5.82638 11.9234 5.86723 11.949 5.91319 11.9694C5.95915 11.9898 6.01021 12 6.06128 12C6.11234 12 6.1634 11.9898 6.20936 11.9694C6.25532 11.949 6.29617 11.9234 6.33191 11.8877L8.13958 10.0808C8.28766 9.93279 8.28766 9.68779 8.13958 9.53977C7.99149 9.39175 7.74638 9.39175 7.5983 9.53977L6.44426 10.6933V2.57252H10.6877L9.53362 3.72097C9.38553 3.86899 9.38553 4.11399 9.53362 4.26202C9.61021 4.33858 9.70723 4.37431 9.80426 4.37431C9.90128 4.37431 9.9983 4.33858 10.0749 4.26202L11.8826 2.45513C11.9183 2.4194 11.9438 2.37856 11.9643 2.33262C11.9847 2.28669 11.9949 2.23564 11.9949 2.1846L12 2.18998Z",fill:s})]})}));exports.SimulFracCustomIcon=C;
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("react/jsx-runtime"),C=require("../../WithCustomSize.js").withCustomIconSize((function(C){var l=C.width,i=void 0===l?24:l,t=C.height,r=void 0===t?24:t,d=C.className,o=C.fill;return e.jsxs("svg",{width:i,height:r,className:d,viewBox:"0 0 ".concat(i," ").concat(r),fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[e.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M2.46145 0.112172C2.61101 0.261734 2.61101 0.504223 2.46145 0.653786L0.924976 2.19025L2.46106 3.722C2.61084 3.87135 2.61118 4.11384 2.46183 4.26361C2.31248 4.41339 2.06999 4.41373 1.92021 4.26438L0.112555 2.46183C0.0405648 2.39004 7.19867e-05 2.29258 9.58889e-08 2.19091C-7.17949e-05 2.08924 0.0402831 1.99172 0.112172 1.91983L1.91983 0.112172C2.06939 -0.0373906 2.31188 -0.0373906 2.46145 0.112172Z",fill:o}),e.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M9.53817 7.73639C9.68752 7.58661 9.93001 7.58627 10.0798 7.73562L11.8874 9.53817C11.9594 9.60996 11.9999 9.70742 12 9.80909C12.0001 9.91076 11.9597 10.0083 11.8878 10.0802L10.0802 11.8878C9.93061 12.0374 9.68812 12.0374 9.53855 11.8878C9.38899 11.7383 9.38899 11.4958 9.53855 11.3462L11.075 9.80974L9.53894 8.278C9.38916 8.12865 9.38882 7.88616 9.53817 7.73639Z",fill:o}),e.jsx("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M9.58889e-08 2.19091C9.58889e-08 1.9794 0.171465 1.80766 0.382979 1.80766H11.1064C11.2714 1.80766 11.4179 1.91337 11.4699 2.07C11.5218 2.22662 11.4677 2.39893 11.3354 2.49761L2.04748 9.42638H11.617C11.8285 9.42638 12 9.59758 12 9.80909C12 10.0206 11.8285 10.1923 11.617 10.1923H0.893617C0.728591 10.1923 0.582122 10.0866 0.530136 9.93C0.478151 9.77338 0.532342 9.60107 0.664616 9.50239L9.95252 2.57362H0.382979C0.171465 2.57362 9.58889e-08 2.40242 9.58889e-08 2.19091Z",fill:o}),e.jsx("path",{d:"M12 9.80909C12 9.75803 11.9898 9.70723 11.9694 9.66128C11.9489 9.61532 11.9234 9.57447 11.8877 9.53872L10.08 7.73106C9.93191 7.58298 9.68681 7.58298 9.53872 7.73106C9.39064 7.87915 9.39064 8.12426 9.53872 8.27234L10.6928 9.42638H2.04748L11.3362 2.49702C11.4689 2.4 11.52 2.22638 11.4689 2.06809C11.4179 1.90979 11.2698 1.80766 11.1064 1.80766H1.30723L2.46145 0.653786C2.60953 0.5057 2.60953 0.260257 2.46145 0.112172C2.31336 -0.0359132 2.06792 -0.0359132 1.91983 0.112172L0.112172 1.91983C0.0764272 1.95558 0.0510638 1.9966 0.0306383 2.04255C-0.0102128 2.13447 -0.0102128 2.2417 0.0306383 2.33362C0.0510638 2.37957 0.0765957 2.42043 0.11234 2.45617L1.92 4.26383C1.9966 4.34043 2.09362 4.37617 2.19064 4.37617C2.28766 4.37617 2.38468 4.34043 2.46128 4.26383C2.60936 4.11575 2.60936 3.87064 2.46128 3.72255L1.30723 2.56851H9.95234L0.66383 9.50298C0.531064 9.6 0.48 9.77362 0.531064 9.93192C0.582128 10.0902 0.730213 10.1923 0.893617 10.1923H10.6928L9.53872 11.3413C9.39064 11.4894 9.39064 11.7345 9.53872 11.8826C9.61532 11.9591 9.71234 11.9949 9.80936 11.9949C9.90638 11.9949 10.0034 11.9591 10.08 11.8826L11.8877 10.0749C11.9234 10.0391 11.9489 9.9983 11.9694 9.95234C11.9898 9.90638 12 9.85532 12 9.80426V9.80909Z",fill:o})]})}));exports.ZipperFracCustomIcon=C;
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("react/jsx-runtime"),C=require("../../WithCustomSize.js").withCustomIconSize((function(C){var l=C.width,i=void 0===l?24:l,t=C.height,d=void 0===t?24:t,o=C.className,s=C.fill;return e.jsxs("svg",{width:i,height:d,className:o,viewBox:"0 0 ".concat(i," ").concat(d),fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.46145 0.112172C2.61101 0.261734 2.61101 0.504223 2.46145 0.653786L0.924976 2.19025L2.46106 3.722C2.61084 3.87135 2.61118 4.11384 2.46183 4.26361C2.31248 4.41339 2.06999 4.41373 1.92021 4.26438L0.112555 2.46183C0.0405648 2.39004 7.19867e-05 2.29258 9.58889e-08 2.19091C-7.17949e-05 2.08924 0.0402831 1.99172 0.112172 1.91983L1.91983 0.112172C2.06939 -0.0373906 2.31188 -0.0373906 2.46145 0.112172Z",fill:s}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.53817 7.73639C9.68752 7.58661 9.93001 7.58627 10.0798 7.73562L11.8874 9.53817C11.9594 9.60996 11.9999 9.70742 12 9.80909C12.0001 9.91076 11.9597 10.0083 11.8878 10.0802L10.0802 11.8878C9.93061 12.0374 9.68812 12.0374 9.53855 11.8878C9.38899 11.7383 9.38899 11.4958 9.53855 11.3462L11.075 9.80974L9.53894 8.278C9.38916 8.12865 9.38882 7.88616 9.53817 7.73639Z",fill:s}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.58889e-08 2.19091C9.58889e-08 1.9794 0.171465 1.80766 0.382979 1.80766H11.1064C11.2714 1.80766 11.4179 1.91337 11.4699 2.07C11.5218 2.22662 11.4677 2.39893 11.3354 2.49761L2.04748 9.42638H11.617C11.8285 9.42638 12 9.59758 12 9.80909C12 10.0206 11.8285 10.1923 11.617 10.1923H0.893617C0.728591 10.1923 0.582122 10.0866 0.530136 9.93C0.478151 9.77338 0.532342 9.60107 0.664616 9.50239L9.95252 2.57362H0.382979C0.171465 2.57362 9.58889e-08 2.40242 9.58889e-08 2.19091Z",fill:s}),e.jsx("path",{d:"M12 9.80909C12 9.75803 11.9898 9.70723 11.9694 9.66128C11.9489 9.61532 11.9234 9.57447 11.8877 9.53872L10.08 7.73106C9.93191 7.58298 9.68681 7.58298 9.53872 7.73106C9.39064 7.87915 9.39064 8.12426 9.53872 8.27234L10.6928 9.42638H2.04748L11.3362 2.49702C11.4689 2.4 11.52 2.22638 11.4689 2.06809C11.4179 1.90979 11.2698 1.80766 11.1064 1.80766H1.30723L2.46145 0.653786C2.60953 0.5057 2.60953 0.260257 2.46145 0.112172C2.31336 -0.0359132 2.06792 -0.0359132 1.91983 0.112172L0.112172 1.91983C0.0764272 1.95558 0.0510638 1.9966 0.0306383 2.04255C-0.0102128 2.13447 -0.0102128 2.2417 0.0306383 2.33362C0.0510638 2.37957 0.0765957 2.42043 0.11234 2.45617L1.92 4.26383C1.9966 4.34043 2.09362 4.37617 2.19064 4.37617C2.28766 4.37617 2.38468 4.34043 2.46128 4.26383C2.60936 4.11575 2.60936 3.87064 2.46128 3.72255L1.30723 2.56851H9.95234L0.66383 9.50298C0.531064 9.6 0.48 9.77362 0.531064 9.93192C0.582128 10.0902 0.730213 10.1923 0.893617 10.1923H10.6928L9.53872 11.3413C9.39064 11.4894 9.39064 11.7345 9.53872 11.8826C9.61532 11.9591 9.71234 11.9949 9.80936 11.9949C9.90638 11.9949 10.0034 11.9591 10.08 11.8826L11.8877 10.0749C11.9234 10.0391 11.9489 9.9983 11.9694 9.95234C11.9898 9.90638 12 9.85532 12 9.80426V9.80909Z",fill:s})]})}));exports.ZipperFracCustomIcon=C;
@@ -1 +1 @@
1
- {"version":3,"file":"MoreApp.d.ts","sourceRoot":"","sources":["../../../../src/icons/customIcons/icons/MoreApp.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,iBAAiB,qFAuBkC,IAAK,OAcpE,CAAC"}
1
+ {"version":3,"file":"MoreApp.d.ts","sourceRoot":"","sources":["../../../../src/icons/customIcons/icons/MoreApp.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,iBAAiB,qFAuByC,IAAI,OAc1E,CAAC"}
@@ -1 +1 @@
1
- import{jsxs as e,jsx as l}from"react/jsx-runtime";import{withCustomIconSize as C}from"../../WithCustomSize.js";var d=C((function(C){var d=C.width,i=void 0===d?24:d,r=C.height,o=void 0===r?24:r,t=C.className,v=C.fill;return e("svg",{className:t,width:i,height:o,viewBox:"0 0 24 24",fill:v,xmlns:"http://www.w3.org/2000/svg",children:[l("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M13.25 17.5C13.25 17.0858 13.5858 16.75 14 16.75H22C22.4142 16.75 22.75 17.0858 22.75 17.5C22.75 17.9142 22.4142 18.25 22 18.25H14C13.5858 18.25 13.25 17.9142 13.25 17.5Z"}),l("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M1.25 15C1.25 14.0335 2.03351 13.25 3 13.25H9C9.96651 13.25 10.75 14.0335 10.75 15V21C10.75 21.9665 9.96651 22.75 9 22.75H3C2.03351 22.75 1.25 21.9665 1.25 21V15ZM3 14.75C2.86192 14.75 2.75 14.8619 2.75 15V21C2.75 21.1381 2.86192 21.25 3 21.25H9C9.13809 21.25 9.25 21.1381 9.25 21V15C9.25 14.8619 9.13809 14.75 9 14.75H3Z"}),l("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M13.25 3C13.25 2.03351 14.0335 1.25 15 1.25H21C21.9665 1.25 22.75 2.03351 22.75 3V9C22.75 9.96651 21.9665 10.75 21 10.75H15C14.0335 10.75 13.25 9.96651 13.25 9V3ZM15 2.75C14.8619 2.75 14.75 2.86192 14.75 3V9C14.75 9.13809 14.8619 9.25 15 9.25H21C21.1381 9.25 21.25 9.13809 21.25 9V3C21.25 2.86192 21.1381 2.75 21 2.75H15Z"}),l("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M1.25 3C1.25 2.0335 2.0335 1.25 3 1.25H9C9.96652 1.25 10.75 2.03351 10.75 3V9C10.75 9.96651 9.96651 10.75 9 10.75H3C2.03351 10.75 1.25 9.96652 1.25 9V3ZM3 2.75C2.86193 2.75 2.75 2.86193 2.75 3V9C2.75 9.13808 2.86192 9.25 3 9.25H9C9.13809 9.25 9.25 9.13809 9.25 9V3C9.25 2.86192 9.13808 2.75 9 2.75H3Z"}),l("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M18 13C18.4142 13 18.75 13.3358 18.75 13.75L18.75 21.75C18.75 22.1642 18.4142 22.5 18 22.5C17.5858 22.5 17.25 22.1642 17.25 21.75L17.25 17.75L17.25 13.75C17.25 13.3358 17.5858 13 18 13Z"})]})}));export{d as MoreAppCustomIcon};
1
+ import{jsxs as e,jsx as l}from"react/jsx-runtime";import{withCustomIconSize as C}from"../../WithCustomSize.js";var d=C((function(C){var d=C.width,i=void 0===d?24:d,o=C.height,t=void 0===o?24:o,v=C.className,n=C.fill;return e("svg",{className:v,width:i,height:t,viewBox:"0 0 24 24",fill:n,xmlns:"http://www.w3.org/2000/svg",children:[l("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13.25 17.5C13.25 17.0858 13.5858 16.75 14 16.75H22C22.4142 16.75 22.75 17.0858 22.75 17.5C22.75 17.9142 22.4142 18.25 22 18.25H14C13.5858 18.25 13.25 17.9142 13.25 17.5Z"}),l("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.25 15C1.25 14.0335 2.03351 13.25 3 13.25H9C9.96651 13.25 10.75 14.0335 10.75 15V21C10.75 21.9665 9.96651 22.75 9 22.75H3C2.03351 22.75 1.25 21.9665 1.25 21V15ZM3 14.75C2.86192 14.75 2.75 14.8619 2.75 15V21C2.75 21.1381 2.86192 21.25 3 21.25H9C9.13809 21.25 9.25 21.1381 9.25 21V15C9.25 14.8619 9.13809 14.75 9 14.75H3Z"}),l("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13.25 3C13.25 2.03351 14.0335 1.25 15 1.25H21C21.9665 1.25 22.75 2.03351 22.75 3V9C22.75 9.96651 21.9665 10.75 21 10.75H15C14.0335 10.75 13.25 9.96651 13.25 9V3ZM15 2.75C14.8619 2.75 14.75 2.86192 14.75 3V9C14.75 9.13809 14.8619 9.25 15 9.25H21C21.1381 9.25 21.25 9.13809 21.25 9V3C21.25 2.86192 21.1381 2.75 21 2.75H15Z"}),l("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.25 3C1.25 2.0335 2.0335 1.25 3 1.25H9C9.96652 1.25 10.75 2.03351 10.75 3V9C10.75 9.96651 9.96651 10.75 9 10.75H3C2.03351 10.75 1.25 9.96652 1.25 9V3ZM3 2.75C2.86193 2.75 2.75 2.86193 2.75 3V9C2.75 9.13808 2.86192 9.25 3 9.25H9C9.13809 9.25 9.25 9.13809 9.25 9V3C9.25 2.86192 9.13808 2.75 9 2.75H3Z"}),l("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18 13C18.4142 13 18.75 13.3358 18.75 13.75L18.75 21.75C18.75 22.1642 18.4142 22.5 18 22.5C17.5858 22.5 17.25 22.1642 17.25 21.75L17.25 17.75L17.25 13.75C17.25 13.3358 17.5858 13 18 13Z"})]})}));export{d as MoreAppCustomIcon};
@@ -1 +1 @@
1
- {"version":3,"file":"SimulFrac.d.ts","sourceRoot":"","sources":["../../../../src/icons/customIcons/icons/SimulFrac.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,mBAAmB,qFAmBiL,IAAK,OA2BrN,CAAC"}
1
+ {"version":3,"file":"SimulFrac.d.ts","sourceRoot":"","sources":["../../../../src/icons/customIcons/icons/SimulFrac.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,mBAAmB,qFAmBsL,IAAI,OA2BzN,CAAC"}
@@ -1 +1 @@
1
- import{jsxs as C,jsx as e}from"react/jsx-runtime";import{withCustomIconSize as l}from"../../WithCustomSize.js";var i=l((function(l){var i=l.width,d=void 0===i?24:i,L=l.height,o=void 0===L?24:L,r=l.className,t=l.fill;return C("svg",{width:d,height:o,className:r,viewBox:"0 0 ".concat(d," ").concat(o),fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[e("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M2.46145 0.112124C2.61101 0.261623 2.61101 0.504009 2.46145 0.653507L0.924976 2.18932L2.46106 3.72042C2.61084 3.86971 2.61118 4.11209 2.46183 4.2618C2.31248 4.41151 2.06999 4.41185 1.92021 4.26257L0.112555 2.46078C0.0405648 2.38902 7.19867e-05 2.2916 9.58885e-08 2.18998C-7.17949e-05 2.08835 0.0402831 1.99087 0.112172 1.91901L1.91983 0.112124C2.06939 -0.0373747 2.31188 -0.0373747 2.46145 0.112124Z",fill:t}),e("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M9.53855 0.112124C9.68812 -0.0373747 9.93061 -0.0373747 10.0802 0.112124L11.8878 1.91901C11.9597 1.99087 12.0001 2.08835 12 2.18998C11.9999 2.2916 11.9594 2.38902 11.8874 2.46078L10.0798 4.26257C9.93001 4.41185 9.68752 4.41151 9.53817 4.2618C9.38882 4.11209 9.38916 3.86971 9.53894 3.72042L11.075 2.18932L9.53855 0.653508C9.38899 0.504009 9.38899 0.261623 9.53855 0.112124Z",fill:t}),e("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M3.98792 9.5345C4.13748 9.385 4.37997 9.385 4.52953 9.5345L6.066 11.0703L7.59775 9.53488C7.7471 9.38517 7.98959 9.38483 8.13936 9.53411C8.28913 9.6834 8.28948 9.92579 8.14013 10.0755L6.33757 11.8824C6.26579 11.9543 6.16832 11.9948 6.06665 11.9949C5.96499 11.995 5.86746 11.9546 5.79558 11.8828L3.98792 10.0759C3.83835 9.92638 3.83835 9.684 3.98792 9.5345Z",fill:t}),e("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M0.12766 2.18971C0.12766 1.97828 0.299125 1.80689 0.510638 1.80689H11.617C11.8285 1.80689 12 1.97855 12 2.18998C12 2.4014 11.8285 2.57252 11.617 2.57252H0.510638C0.299125 2.57252 0.12766 2.40113 0.12766 2.18971Z",fill:t}),e("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M6.06128 1.80689C6.27279 1.80689 6.44426 1.97828 6.44426 2.18971V11.6121C6.44426 11.8235 6.27279 11.9949 6.06128 11.9949C5.84976 11.9949 5.6783 11.8235 5.6783 11.6121V2.18971C5.6783 1.97828 5.84976 1.80689 6.06128 1.80689Z",fill:t}),e("path",{d:"M12 2.18998C12 2.13894 11.9898 2.08762 11.9694 2.04168C11.9489 1.99575 11.9236 1.95474 11.8878 1.91901L10.0802 0.112124C9.93208 -0.035898 9.68664 -0.0358979 9.53855 0.112124C9.39047 0.260146 9.39047 0.505485 9.53855 0.653508L10.6928 1.80179H1.30723L2.46145 0.653507C2.60953 0.505485 2.60953 0.260146 2.46145 0.112124C2.31336 -0.035898 2.06792 -0.035898 1.91983 0.112124L0.112172 1.91901C0.0406825 1.99047 9.58885e-08 2.08789 9.58885e-08 2.18998C9.58885e-08 2.29206 0.0408511 2.38877 0.11234 2.46023L1.92 4.26712C1.9966 4.34368 2.09362 4.37941 2.19064 4.37941C2.28766 4.37941 2.38468 4.34368 2.46128 4.26712C2.60936 4.1191 2.60936 3.8741 2.46128 3.72607L1.30723 2.57763H5.6783V10.6933L4.52426 9.53977C4.37617 9.39175 4.13106 9.39175 3.98298 9.53977C3.83489 9.68779 3.83489 9.93279 3.98298 10.0808L5.79064 11.8877C5.82638 11.9234 5.86723 11.949 5.91319 11.9694C5.95915 11.9898 6.01021 12 6.06128 12C6.11234 12 6.1634 11.9898 6.20936 11.9694C6.25532 11.949 6.29617 11.9234 6.33191 11.8877L8.13958 10.0808C8.28766 9.93279 8.28766 9.68779 8.13958 9.53977C7.99149 9.39175 7.74638 9.39175 7.5983 9.53977L6.44426 10.6933V2.57252H10.6877L9.53362 3.72097C9.38553 3.86899 9.38553 4.11399 9.53362 4.26202C9.61021 4.33858 9.70723 4.37431 9.80426 4.37431C9.90128 4.37431 9.9983 4.33858 10.0749 4.26202L11.8826 2.45513C11.9183 2.4194 11.9438 2.37856 11.9643 2.33262C11.9847 2.28669 11.9949 2.23564 11.9949 2.1846L12 2.18998Z",fill:t})]})}));export{i as SimulFracCustomIcon};
1
+ import{jsxs as C,jsx as e}from"react/jsx-runtime";import{withCustomIconSize as l}from"../../WithCustomSize.js";var i=l((function(l){var i=l.width,d=void 0===i?24:i,L=l.height,o=void 0===L?24:L,t=l.className,n=l.fill;return C("svg",{width:d,height:o,className:t,viewBox:"0 0 ".concat(d," ").concat(o),fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[e("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.46145 0.112124C2.61101 0.261623 2.61101 0.504009 2.46145 0.653507L0.924976 2.18932L2.46106 3.72042C2.61084 3.86971 2.61118 4.11209 2.46183 4.2618C2.31248 4.41151 2.06999 4.41185 1.92021 4.26257L0.112555 2.46078C0.0405648 2.38902 7.19867e-05 2.2916 9.58885e-08 2.18998C-7.17949e-05 2.08835 0.0402831 1.99087 0.112172 1.91901L1.91983 0.112124C2.06939 -0.0373747 2.31188 -0.0373747 2.46145 0.112124Z",fill:n}),e("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.53855 0.112124C9.68812 -0.0373747 9.93061 -0.0373747 10.0802 0.112124L11.8878 1.91901C11.9597 1.99087 12.0001 2.08835 12 2.18998C11.9999 2.2916 11.9594 2.38902 11.8874 2.46078L10.0798 4.26257C9.93001 4.41185 9.68752 4.41151 9.53817 4.2618C9.38882 4.11209 9.38916 3.86971 9.53894 3.72042L11.075 2.18932L9.53855 0.653508C9.38899 0.504009 9.38899 0.261623 9.53855 0.112124Z",fill:n}),e("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.98792 9.5345C4.13748 9.385 4.37997 9.385 4.52953 9.5345L6.066 11.0703L7.59775 9.53488C7.7471 9.38517 7.98959 9.38483 8.13936 9.53411C8.28913 9.6834 8.28948 9.92579 8.14013 10.0755L6.33757 11.8824C6.26579 11.9543 6.16832 11.9948 6.06665 11.9949C5.96499 11.995 5.86746 11.9546 5.79558 11.8828L3.98792 10.0759C3.83835 9.92638 3.83835 9.684 3.98792 9.5345Z",fill:n}),e("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0.12766 2.18971C0.12766 1.97828 0.299125 1.80689 0.510638 1.80689H11.617C11.8285 1.80689 12 1.97855 12 2.18998C12 2.4014 11.8285 2.57252 11.617 2.57252H0.510638C0.299125 2.57252 0.12766 2.40113 0.12766 2.18971Z",fill:n}),e("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.06128 1.80689C6.27279 1.80689 6.44426 1.97828 6.44426 2.18971V11.6121C6.44426 11.8235 6.27279 11.9949 6.06128 11.9949C5.84976 11.9949 5.6783 11.8235 5.6783 11.6121V2.18971C5.6783 1.97828 5.84976 1.80689 6.06128 1.80689Z",fill:n}),e("path",{d:"M12 2.18998C12 2.13894 11.9898 2.08762 11.9694 2.04168C11.9489 1.99575 11.9236 1.95474 11.8878 1.91901L10.0802 0.112124C9.93208 -0.035898 9.68664 -0.0358979 9.53855 0.112124C9.39047 0.260146 9.39047 0.505485 9.53855 0.653508L10.6928 1.80179H1.30723L2.46145 0.653507C2.60953 0.505485 2.60953 0.260146 2.46145 0.112124C2.31336 -0.035898 2.06792 -0.035898 1.91983 0.112124L0.112172 1.91901C0.0406825 1.99047 9.58885e-08 2.08789 9.58885e-08 2.18998C9.58885e-08 2.29206 0.0408511 2.38877 0.11234 2.46023L1.92 4.26712C1.9966 4.34368 2.09362 4.37941 2.19064 4.37941C2.28766 4.37941 2.38468 4.34368 2.46128 4.26712C2.60936 4.1191 2.60936 3.8741 2.46128 3.72607L1.30723 2.57763H5.6783V10.6933L4.52426 9.53977C4.37617 9.39175 4.13106 9.39175 3.98298 9.53977C3.83489 9.68779 3.83489 9.93279 3.98298 10.0808L5.79064 11.8877C5.82638 11.9234 5.86723 11.949 5.91319 11.9694C5.95915 11.9898 6.01021 12 6.06128 12C6.11234 12 6.1634 11.9898 6.20936 11.9694C6.25532 11.949 6.29617 11.9234 6.33191 11.8877L8.13958 10.0808C8.28766 9.93279 8.28766 9.68779 8.13958 9.53977C7.99149 9.39175 7.74638 9.39175 7.5983 9.53977L6.44426 10.6933V2.57252H10.6877L9.53362 3.72097C9.38553 3.86899 9.38553 4.11399 9.53362 4.26202C9.61021 4.33858 9.70723 4.37431 9.80426 4.37431C9.90128 4.37431 9.9983 4.33858 10.0749 4.26202L11.8826 2.45513C11.9183 2.4194 11.9438 2.37856 11.9643 2.33262C11.9847 2.28669 11.9949 2.23564 11.9949 2.1846L12 2.18998Z",fill:n})]})}));export{i as SimulFracCustomIcon};
@@ -1 +1 @@
1
- {"version":3,"file":"ZipperFrac.d.ts","sourceRoot":"","sources":["../../../../src/icons/customIcons/icons/ZipperFrac.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,oBAAoB,qFAmB+K,IAAK,OAepN,CAAC"}
1
+ {"version":3,"file":"ZipperFrac.d.ts","sourceRoot":"","sources":["../../../../src/icons/customIcons/icons/ZipperFrac.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,oBAAoB,qFAmBmL,IAAK,OAexN,CAAC"}
@@ -1 +1 @@
1
- import{jsxs as C,jsx as e}from"react/jsx-runtime";import{withCustomIconSize as l}from"../../WithCustomSize.js";var i=l((function(l){var i=l.width,d=void 0===i?24:i,t=l.height,o=void 0===t?24:t,L=l.className,r=l.fill;return C("svg",{width:d,height:o,className:L,viewBox:"0 0 ".concat(d," ").concat(o),fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[e("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M2.46145 0.112172C2.61101 0.261734 2.61101 0.504223 2.46145 0.653786L0.924976 2.19025L2.46106 3.722C2.61084 3.87135 2.61118 4.11384 2.46183 4.26361C2.31248 4.41339 2.06999 4.41373 1.92021 4.26438L0.112555 2.46183C0.0405648 2.39004 7.19867e-05 2.29258 9.58889e-08 2.19091C-7.17949e-05 2.08924 0.0402831 1.99172 0.112172 1.91983L1.91983 0.112172C2.06939 -0.0373906 2.31188 -0.0373906 2.46145 0.112172Z",fill:r}),e("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M9.53817 7.73639C9.68752 7.58661 9.93001 7.58627 10.0798 7.73562L11.8874 9.53817C11.9594 9.60996 11.9999 9.70742 12 9.80909C12.0001 9.91076 11.9597 10.0083 11.8878 10.0802L10.0802 11.8878C9.93061 12.0374 9.68812 12.0374 9.53855 11.8878C9.38899 11.7383 9.38899 11.4958 9.53855 11.3462L11.075 9.80974L9.53894 8.278C9.38916 8.12865 9.38882 7.88616 9.53817 7.73639Z",fill:r}),e("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M9.58889e-08 2.19091C9.58889e-08 1.9794 0.171465 1.80766 0.382979 1.80766H11.1064C11.2714 1.80766 11.4179 1.91337 11.4699 2.07C11.5218 2.22662 11.4677 2.39893 11.3354 2.49761L2.04748 9.42638H11.617C11.8285 9.42638 12 9.59758 12 9.80909C12 10.0206 11.8285 10.1923 11.617 10.1923H0.893617C0.728591 10.1923 0.582122 10.0866 0.530136 9.93C0.478151 9.77338 0.532342 9.60107 0.664616 9.50239L9.95252 2.57362H0.382979C0.171465 2.57362 9.58889e-08 2.40242 9.58889e-08 2.19091Z",fill:r}),e("path",{d:"M12 9.80909C12 9.75803 11.9898 9.70723 11.9694 9.66128C11.9489 9.61532 11.9234 9.57447 11.8877 9.53872L10.08 7.73106C9.93191 7.58298 9.68681 7.58298 9.53872 7.73106C9.39064 7.87915 9.39064 8.12426 9.53872 8.27234L10.6928 9.42638H2.04748L11.3362 2.49702C11.4689 2.4 11.52 2.22638 11.4689 2.06809C11.4179 1.90979 11.2698 1.80766 11.1064 1.80766H1.30723L2.46145 0.653786C2.60953 0.5057 2.60953 0.260257 2.46145 0.112172C2.31336 -0.0359132 2.06792 -0.0359132 1.91983 0.112172L0.112172 1.91983C0.0764272 1.95558 0.0510638 1.9966 0.0306383 2.04255C-0.0102128 2.13447 -0.0102128 2.2417 0.0306383 2.33362C0.0510638 2.37957 0.0765957 2.42043 0.11234 2.45617L1.92 4.26383C1.9966 4.34043 2.09362 4.37617 2.19064 4.37617C2.28766 4.37617 2.38468 4.34043 2.46128 4.26383C2.60936 4.11575 2.60936 3.87064 2.46128 3.72255L1.30723 2.56851H9.95234L0.66383 9.50298C0.531064 9.6 0.48 9.77362 0.531064 9.93192C0.582128 10.0902 0.730213 10.1923 0.893617 10.1923H10.6928L9.53872 11.3413C9.39064 11.4894 9.39064 11.7345 9.53872 11.8826C9.61532 11.9591 9.71234 11.9949 9.80936 11.9949C9.90638 11.9949 10.0034 11.9591 10.08 11.8826L11.8877 10.0749C11.9234 10.0391 11.9489 9.9983 11.9694 9.95234C11.9898 9.90638 12 9.85532 12 9.80426V9.80909Z",fill:r})]})}));export{i as ZipperFracCustomIcon};
1
+ import{jsxs as C,jsx as e}from"react/jsx-runtime";import{withCustomIconSize as l}from"../../WithCustomSize.js";var i=l((function(l){var i=l.width,d=void 0===i?24:i,t=l.height,o=void 0===t?24:t,L=l.className,n=l.fill;return C("svg",{width:d,height:o,className:L,viewBox:"0 0 ".concat(d," ").concat(o),fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[e("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.46145 0.112172C2.61101 0.261734 2.61101 0.504223 2.46145 0.653786L0.924976 2.19025L2.46106 3.722C2.61084 3.87135 2.61118 4.11384 2.46183 4.26361C2.31248 4.41339 2.06999 4.41373 1.92021 4.26438L0.112555 2.46183C0.0405648 2.39004 7.19867e-05 2.29258 9.58889e-08 2.19091C-7.17949e-05 2.08924 0.0402831 1.99172 0.112172 1.91983L1.91983 0.112172C2.06939 -0.0373906 2.31188 -0.0373906 2.46145 0.112172Z",fill:n}),e("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.53817 7.73639C9.68752 7.58661 9.93001 7.58627 10.0798 7.73562L11.8874 9.53817C11.9594 9.60996 11.9999 9.70742 12 9.80909C12.0001 9.91076 11.9597 10.0083 11.8878 10.0802L10.0802 11.8878C9.93061 12.0374 9.68812 12.0374 9.53855 11.8878C9.38899 11.7383 9.38899 11.4958 9.53855 11.3462L11.075 9.80974L9.53894 8.278C9.38916 8.12865 9.38882 7.88616 9.53817 7.73639Z",fill:n}),e("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.58889e-08 2.19091C9.58889e-08 1.9794 0.171465 1.80766 0.382979 1.80766H11.1064C11.2714 1.80766 11.4179 1.91337 11.4699 2.07C11.5218 2.22662 11.4677 2.39893 11.3354 2.49761L2.04748 9.42638H11.617C11.8285 9.42638 12 9.59758 12 9.80909C12 10.0206 11.8285 10.1923 11.617 10.1923H0.893617C0.728591 10.1923 0.582122 10.0866 0.530136 9.93C0.478151 9.77338 0.532342 9.60107 0.664616 9.50239L9.95252 2.57362H0.382979C0.171465 2.57362 9.58889e-08 2.40242 9.58889e-08 2.19091Z",fill:n}),e("path",{d:"M12 9.80909C12 9.75803 11.9898 9.70723 11.9694 9.66128C11.9489 9.61532 11.9234 9.57447 11.8877 9.53872L10.08 7.73106C9.93191 7.58298 9.68681 7.58298 9.53872 7.73106C9.39064 7.87915 9.39064 8.12426 9.53872 8.27234L10.6928 9.42638H2.04748L11.3362 2.49702C11.4689 2.4 11.52 2.22638 11.4689 2.06809C11.4179 1.90979 11.2698 1.80766 11.1064 1.80766H1.30723L2.46145 0.653786C2.60953 0.5057 2.60953 0.260257 2.46145 0.112172C2.31336 -0.0359132 2.06792 -0.0359132 1.91983 0.112172L0.112172 1.91983C0.0764272 1.95558 0.0510638 1.9966 0.0306383 2.04255C-0.0102128 2.13447 -0.0102128 2.2417 0.0306383 2.33362C0.0510638 2.37957 0.0765957 2.42043 0.11234 2.45617L1.92 4.26383C1.9966 4.34043 2.09362 4.37617 2.19064 4.37617C2.28766 4.37617 2.38468 4.34043 2.46128 4.26383C2.60936 4.11575 2.60936 3.87064 2.46128 3.72255L1.30723 2.56851H9.95234L0.66383 9.50298C0.531064 9.6 0.48 9.77362 0.531064 9.93192C0.582128 10.0902 0.730213 10.1923 0.893617 10.1923H10.6928L9.53872 11.3413C9.39064 11.4894 9.39064 11.7345 9.53872 11.8826C9.61532 11.9591 9.71234 11.9949 9.80936 11.9949C9.90638 11.9949 10.0034 11.9591 10.08 11.8826L11.8877 10.0749C11.9234 10.0391 11.9489 9.9983 11.9694 9.95234C11.9898 9.90638 12 9.85532 12 9.80426V9.80909Z",fill:n})]})}));export{i as ZipperFracCustomIcon};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corva/ui",
3
- "version": "0.100.0-20",
3
+ "version": "0.100.0-22",
4
4
  "description": "Shared components/utils for Corva ui projects",
5
5
  "keywords": [
6
6
  "corva-ui"