@unicom-cloud/icons 0.1.11 → 0.1.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 (73) hide show
  1. package/IconUiAlignJustify.jsx +25 -0
  2. package/{IconUiMobileCheckedDot.jsx → IconUiCheckedDot.jsx} +3 -3
  3. package/IconUiCodeSquare.jsx +3 -4
  4. package/IconUiEraser.jsx +9 -4
  5. package/{IconUiMobileKeyboard.jsx → IconUiKeyboard.jsx} +3 -3
  6. package/{IconUiMobileKeyboardDelete.jsx → IconUiKeyboardDelete.jsx} +3 -3
  7. package/IconUiMessage.jsx +4 -6
  8. package/IconUiMessageBanned.jsx +5 -6
  9. package/IconUiSend.jsx +1 -5
  10. package/IconUiStrokeDasharray.jsx +25 -0
  11. package/IconUiTable.jsx +24 -0
  12. package/IconUiYoutube.jsx +25 -0
  13. package/package.json +1 -1
  14. package/ui.js +7 -2
  15. package/IconUiMobileAdd.jsx +0 -24
  16. package/IconUiMobileArrowBack.jsx +0 -24
  17. package/IconUiMobileArrowDown.jsx +0 -24
  18. package/IconUiMobileArrowIn.jsx +0 -24
  19. package/IconUiMobileArrowUp.jsx +0 -24
  20. package/IconUiMobileCheck.jsx +0 -28
  21. package/IconUiMobileCheckBold.jsx +0 -27
  22. package/IconUiMobileCircleChecked.jsx +0 -28
  23. package/IconUiMobileCircleDisabled.jsx +0 -28
  24. package/IconUiMobileCircleUnchecked.jsx +0 -24
  25. package/IconUiMobileClear.jsx +0 -24
  26. package/IconUiMobileClose.jsx +0 -24
  27. package/IconUiMobileCloseBold.jsx +0 -27
  28. package/IconUiMobileDelete.jsx +0 -24
  29. package/IconUiMobileDownload.jsx +0 -27
  30. package/IconUiMobileEdit.jsx +0 -24
  31. package/IconUiMobileErrorCircle.jsx +0 -25
  32. package/IconUiMobileEyeInvisible.jsx +0 -24
  33. package/IconUiMobileEyeVisible.jsx +0 -24
  34. package/IconUiMobileEyelashInvisible.jsx +0 -24
  35. package/IconUiMobileFile.jsx +0 -27
  36. package/IconUiMobileGift.jsx +0 -24
  37. package/IconUiMobileHeart.jsx +0 -24
  38. package/IconUiMobileHome.jsx +0 -24
  39. package/IconUiMobileLikeCircle.jsx +0 -24
  40. package/IconUiMobileMinus.jsx +0 -24
  41. package/IconUiMobileMore.jsx +0 -24
  42. package/IconUiMobileNotice.jsx +0 -24
  43. package/IconUiMobileNoticeOff.jsx +0 -24
  44. package/IconUiMobilePicture.jsx +0 -24
  45. package/IconUiMobilePlay.jsx +0 -24
  46. package/IconUiMobileQuestionCircle.jsx +0 -28
  47. package/IconUiMobileRefresh.jsx +0 -24
  48. package/IconUiMobileSad.jsx +0 -24
  49. package/IconUiMobileScan.jsx +0 -24
  50. package/IconUiMobileSearch.jsx +0 -24
  51. package/IconUiMobileSetting.jsx +0 -24
  52. package/IconUiMobileShop.jsx +0 -24
  53. package/IconUiMobileShopping.jsx +0 -24
  54. package/IconUiMobileSmileFill.jsx +0 -24
  55. package/IconUiMobileSound.jsx +0 -24
  56. package/IconUiMobileSquareChecked.jsx +0 -24
  57. package/IconUiMobileSquareDisabled.jsx +0 -27
  58. package/IconUiMobileSquareUnchecked.jsx +0 -24
  59. package/IconUiMobileStar.jsx +0 -24
  60. package/IconUiMobileStarFill.jsx +0 -24
  61. package/IconUiMobileStarHalf.jsx +0 -24
  62. package/IconUiMobileSubway.jsx +0 -24
  63. package/IconUiMobileSuccessCircle.jsx +0 -25
  64. package/IconUiMobileTriDown.jsx +0 -24
  65. package/IconUiMobileTriUp.jsx +0 -24
  66. package/IconUiMobileUpload.jsx +0 -24
  67. package/IconUiMobileUser.jsx +0 -24
  68. package/IconUiMobileUserFill.jsx +0 -24
  69. package/IconUiMobileWarnCircle.jsx +0 -25
  70. package/IconUiMobileWarnCircleFill.jsx +0 -24
  71. package/IconUiWeibo.jsx +0 -31
  72. package/IconUiWeiboCircleFill.jsx +0 -31
  73. package/ui-mobile.js +0 -59
@@ -0,0 +1,25 @@
1
+ import React from 'react';
2
+ import useProps from './useProps';
3
+
4
+ function Icon(props, ref) {
5
+ const props_ = useProps({ ...props, name: 'ui-align-justify' });
6
+
7
+ const e = (
8
+ <svg
9
+ width='1em'
10
+ height='1em'
11
+ viewBox='0 0 48 48'
12
+ fill='none'
13
+ stroke='currentColor'
14
+ ref={ref}
15
+ {...props_}
16
+ strokeWidth='4'
17
+ >
18
+ <path d='M44 9H4m40 20H4m40-10H4m40 20H4' strokeLinecap='butt' />
19
+ </svg>
20
+ );
21
+ return e;
22
+ }
23
+
24
+ const IconUiAlignJustify = React.forwardRef(Icon);
25
+ export default IconUiAlignJustify;
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import useProps from './useProps';
3
3
 
4
4
  function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-checked-dot' });
5
+ const props_ = useProps({ ...props, name: 'ui-checked-dot' });
6
6
 
7
7
  const e = (
8
8
  <svg
@@ -28,5 +28,5 @@ function Icon(props, ref) {
28
28
  return e;
29
29
  }
30
30
 
31
- const IconUiMobileCheckedDot = React.forwardRef(Icon);
32
- export default IconUiMobileCheckedDot;
31
+ const IconUiCheckedDot = React.forwardRef(Icon);
32
+ export default IconUiCheckedDot;
@@ -9,16 +9,15 @@ function Icon(props, ref) {
9
9
  width='1em'
10
10
  height='1em'
11
11
  viewBox='0 0 48 48'
12
+ version='1.1'
12
13
  fill='none'
13
14
  stroke='currentColor'
14
15
  ref={ref}
15
16
  {...props_}
16
17
  strokeWidth='4'
17
18
  >
18
- <path
19
- d='M23.071 17 16 24.071l7.071 7.071m9.001-14.624-4.14 15.455M9 42h30a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v34a1 1 0 0 0 1 1Z'
20
- strokeLinecap='butt'
21
- />
19
+ <path d='M7.125 42h33.75c.621 0 1.125-.448 1.125-1V7c0-.552-.504-1-1.125-1H7.125C6.504 6 6 6.448 6 7v34c0 .552.504 1 1.125 1Zm24.947-25.482-4.141 15.455' />
20
+ <path d='M23.071 17 16 24.071l7.071 7.071' />
22
21
  </svg>
23
22
  );
24
23
  return e;
package/IconUiEraser.jsx CHANGED
@@ -8,16 +8,21 @@ function Icon(props, ref) {
8
8
  <svg
9
9
  width='1em'
10
10
  height='1em'
11
- viewBox='0 0 48 48'
11
+ viewBox='0 0 12 12'
12
+ version='1.1'
12
13
  fill='none'
13
14
  stroke='currentColor'
14
15
  ref={ref}
15
16
  {...props_}
16
- strokeWidth='4'
17
17
  >
18
18
  <path
19
- d='M25.5 40.503 14.914 40.5a1 1 0 0 1-.707-.293l-9-9a1 1 0 0 1 0-1.414L13.5 21.5m12 19.003L44 40.5m-18.5.003L29 37M13.5 21.5 26.793 8.207a1 1 0 0 1 1.414 0l14.086 14.086a1 1 0 0 1 0 1.414L29 37M13.5 21.5 29 37'
20
- strokeLinecap='butt'
19
+ d='m3.375 5.375 3.323-3.323a.25.25 0 0 1 .354 0l3.521 3.521a.25.25 0 0 1 0 .354L7.25 9.25z'
20
+ fill='currentColor'
21
+ />
22
+ <path
23
+ d='m6.375 10.126-2.647-.001a.25.25 0 0 1-.176-.073l-2.25-2.25a.25.25 0 0 1 0-.354l2.073-2.073m3 4.751L11 10.125m-4.625.001.875-.876M3.375 5.375l3.323-3.323a.25.25 0 0 1 .354 0l3.521 3.521a.25.25 0 0 1 0 .354L7.25 9.25M3.375 5.375 7.25 9.25'
24
+ fill='none'
25
+ stroke='currentColor'
21
26
  />
22
27
  </svg>
23
28
  );
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import useProps from './useProps';
3
3
 
4
4
  function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-keyboard' });
5
+ const props_ = useProps({ ...props, name: 'ui-keyboard' });
6
6
 
7
7
  const e = (
8
8
  <svg
@@ -29,5 +29,5 @@ function Icon(props, ref) {
29
29
  return e;
30
30
  }
31
31
 
32
- const IconUiMobileKeyboard = React.forwardRef(Icon);
33
- export default IconUiMobileKeyboard;
32
+ const IconUiKeyboard = React.forwardRef(Icon);
33
+ export default IconUiKeyboard;
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import useProps from './useProps';
3
3
 
4
4
  function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-keyboard-delete' });
5
+ const props_ = useProps({ ...props, name: 'ui-keyboard-delete' });
6
6
 
7
7
  const e = (
8
8
  <svg
@@ -25,5 +25,5 @@ function Icon(props, ref) {
25
25
  return e;
26
26
  }
27
27
 
28
- const IconUiMobileKeyboardDelete = React.forwardRef(Icon);
29
- export default IconUiMobileKeyboardDelete;
28
+ const IconUiKeyboardDelete = React.forwardRef(Icon);
29
+ export default IconUiKeyboardDelete;
package/IconUiMessage.jsx CHANGED
@@ -8,17 +8,15 @@ function Icon(props, ref) {
8
8
  <svg
9
9
  width='1em'
10
10
  height='1em'
11
- viewBox='0 0 48 48'
11
+ viewBox='0 0 12 12'
12
+ version='1.1'
12
13
  fill='none'
13
14
  stroke='currentColor'
14
15
  ref={ref}
15
16
  {...props_}
16
- strokeWidth='4'
17
+ strokeWidth='1'
17
18
  >
18
- <path
19
- d='M15 20h18m-18 9h9M7 41h17.63C33.67 41 41 33.67 41 24.63V24c0-9.389-7.611-17-17-17S7 14.611 7 24z'
20
- strokeLinecap='butt'
21
- />
19
+ <path d='M3.75 6.103H6m-2.25-2.25h4.5m-7-1.408c0-.621.504-1.125 1.125-1.125h7.25c.621 0 1.125.504 1.125 1.125V7.72c0 .621-.504 1.125-1.125 1.125H3.817l-1.942 1.739a.375.375 0 0 1-.625-.279z' />
22
20
  </svg>
23
21
  );
24
22
  return e;
@@ -8,17 +8,16 @@ function Icon(props, ref) {
8
8
  <svg
9
9
  width='1em'
10
10
  height='1em'
11
- viewBox='0 0 48 48'
11
+ viewBox='0 0 12 12'
12
+ version='1.1'
12
13
  fill='none'
13
14
  stroke='currentColor'
14
15
  ref={ref}
15
16
  {...props_}
16
- strokeWidth='4'
17
+ strokeWidth='1'
17
18
  >
18
- <path
19
- d='M40.527 20C38.727 12.541 32.01 7 24 7 14.611 7 7 14.611 7 24v17h14m19.364-.636a9 9 0 0 0-12.728-12.728m12.728 12.728a9 9 0 0 1-12.728-12.728m12.728 12.728L27.636 27.636M13 20h12m-12 9h6'
20
- strokeLinecap='butt'
21
- />
19
+ <path d='M7.414 6.547a2 2 0 0 0-2.828-2.829m2.828 2.829a2 2 0 1 1-2.828-2.829m2.828 2.829L4.586 3.718' />
20
+ <path d='M1.25 2.445c0-.621.504-1.125 1.125-1.125h7.25c.621 0 1.125.504 1.125 1.125V7.72c0 .621-.504 1.125-1.125 1.125H3.817l-1.942 1.739a.375.375 0 0 1-.625-.279z' />
22
21
  </svg>
23
22
  );
24
23
  return e;
package/IconUiSend.jsx CHANGED
@@ -15,11 +15,7 @@ function Icon(props, ref) {
15
15
  {...props_}
16
16
  strokeWidth='4'
17
17
  >
18
- <path
19
- d='m14 24-7-5V7l34 17L7 41V29zm0 0h25'
20
- strokeMiterlimit='3.864'
21
- strokeLinecap='butt'
22
- />
18
+ <path d='m22.94 25.06-8.486 1.415-8.486-8.485L42.031 5.969 30.01 42.03l-8.486-8.485zm0 0L40.616 7.384' />
23
19
  </svg>
24
20
  );
25
21
  return e;
@@ -0,0 +1,25 @@
1
+ import React from 'react';
2
+ import useProps from './useProps';
3
+
4
+ function Icon(props, ref) {
5
+ const props_ = useProps({ ...props, name: 'ui-stroke-dasharray' });
6
+
7
+ const e = (
8
+ <svg
9
+ width='1em'
10
+ height='1em'
11
+ viewBox='0 0 48 48'
12
+ fill='none'
13
+ stroke='currentColor'
14
+ ref={ref}
15
+ {...props_}
16
+ strokeWidth='4'
17
+ >
18
+ <path d='M6 24h36' strokeLinecap='butt' strokeDasharray='8,6' />
19
+ </svg>
20
+ );
21
+ return e;
22
+ }
23
+
24
+ const IconUiStrokeDasharray = React.forwardRef(Icon);
25
+ export default IconUiStrokeDasharray;
@@ -0,0 +1,24 @@
1
+ import React from 'react';
2
+ import useProps from './useProps';
3
+
4
+ function Icon(props, ref) {
5
+ const props_ = useProps({ ...props, name: 'ui-table' });
6
+
7
+ const e = (
8
+ <svg
9
+ width='1em'
10
+ height='1em'
11
+ viewBox='0 0 12 12'
12
+ version='1.1'
13
+ fill='currentColor'
14
+ ref={ref}
15
+ {...props_}
16
+ >
17
+ <path d='M1.114 1.725v8.55h9.772v-8.55zm3.665 5.496V5.389h2.442v1.832zm2.442.611v1.832H4.779V7.832zm0-4.886v1.833H4.779V2.946zm-3.053 0v1.833H1.725V2.946zM1.725 5.389h2.443v1.832H1.725zm6.107 0h2.443v1.832H7.832zm0-.61V2.946h2.443v1.833zM1.725 7.832h2.443v1.832H1.725zm6.107 1.832V7.832h2.443v1.832z' />
18
+ </svg>
19
+ );
20
+ return e;
21
+ }
22
+
23
+ const IconUiTable = React.forwardRef(Icon);
24
+ export default IconUiTable;
@@ -0,0 +1,25 @@
1
+ import React from 'react';
2
+ import useProps from './useProps';
3
+
4
+ function Icon(props, ref) {
5
+ const props_ = useProps({ ...props, name: 'ui-youtube' });
6
+
7
+ const e = (
8
+ <svg
9
+ width='1em'
10
+ height='1em'
11
+ viewBox='0 0 48 48'
12
+ version='1.1'
13
+ fill='currentColor'
14
+ stroke='none'
15
+ ref={ref}
16
+ {...props_}
17
+ >
18
+ <path d='M45 23.869q.001-.154-.005-.357c-.004-.379-.014-.806-.023-1.26a71 71 0 0 0-.206-3.84c-.141-1.692-.347-3.103-.628-4.162a6.55 6.55 0 0 0-4.608-4.617c-1.327-.356-3.924-.577-7.58-.713-1.739-.065-3.6-.108-5.461-.131-.651-.009-1.256-.014-1.8-.019h-1.378c-.544.005-1.148.01-1.8.019-1.861.023-3.722.066-5.461.131-3.656.141-6.258.361-7.58.713a6.54 6.54 0 0 0-4.607 4.617c-.286 1.059-.488 2.47-.629 4.163a71 71 0 0 0-.229 5.1c0 .135-.005.253-.005.356v.262q-.001.154.005.357c.004.379.014.806.023 1.26.038 1.308.103 2.611.206 3.84.141 1.692.347 3.103.629 4.162a6.53 6.53 0 0 0 4.607 4.617c1.322.356 3.924.577 7.58.713 1.739.065 3.6.108 5.461.131.652.009 1.256.014 1.8.019h1.378c.544-.005 1.149-.01 1.8-.019 1.861-.023 3.722-.066 5.461-.131 3.656-.141 6.258-.361 7.58-.713a6.52 6.52 0 0 0 4.608-4.617c.285-1.059.487-2.47.628-4.162a71 71 0 0 0 .229-5.1c0-.136.005-.254.005-.357zm-3.375.243c0 .099 0 .207-.005.333q-.008.55-.023 1.205a64 64 0 0 1-.197 3.652c-.127 1.509-.305 2.746-.525 3.576a3.16 3.16 0 0 1-2.222 2.227c-.984.262-3.464.473-6.834.6a219 219 0 0 1-7.149.145h-1.34l-1.772-.014a219 219 0 0 1-5.377-.131c-3.37-.132-5.854-.338-6.834-.6a3.16 3.16 0 0 1-2.222-2.227c-.22-.83-.398-2.067-.525-3.576a69 69 0 0 1-.22-4.857c0-.126-.005-.239-.005-.333v-.225c0-.098 0-.206.005-.332q.008-.55.023-1.205c.033-1.247.099-2.494.197-3.652.127-1.509.305-2.746.525-3.576a3.16 3.16 0 0 1 2.222-2.227c.984-.262 3.464-.473 6.834-.6a214 214 0 0 1 7.149-.145h1.34l1.772.014c1.833.023 3.666.066 5.377.131 3.37.132 5.854.338 6.834.6a3.16 3.16 0 0 1 2.222 2.227c.22.83.398 2.067.525 3.576a69 69 0 0 1 .22 4.857c0 .126.005.239.005.332zm-21.797 6.169 10.875-6.328-10.875-6.234z' />
19
+ </svg>
20
+ );
21
+ return e;
22
+ }
23
+
24
+ const IconUiYoutube = React.forwardRef(Icon);
25
+ export default IconUiYoutube;
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@unicom-cloud/icons","version":"0.1.11","dependencies":{"@unicom-cloud/utils":"^0.1.0"},"peerDependencies":{"react":"^18.3.1","react-dom":"^18.3.1"},"main":"./index.js","type":"module","types":"types/index.d.ts","publishConfig":{"registry":"https://registry.npmjs.org/","access":"public"}}
1
+ {"name":"@unicom-cloud/icons","version":"0.1.12","dependencies":{"@unicom-cloud/utils":"^0.1.0"},"peerDependencies":{"react":"^18.3.1","react-dom":"^18.3.1","react-is":"^19.2.1"},"main":"./index.js","type":"module","types":"types/index.d.ts","publishConfig":{"registry":"https://registry.npmjs.org/","access":"public"}}
package/ui.js CHANGED
@@ -1,4 +1,5 @@
1
1
  export { default as IconUiAlignCenter } from './IconUiAlignCenter';
2
+ export { default as IconUiAlignJustify } from './IconUiAlignJustify';
2
3
  export { default as IconUiAlignLeft } from './IconUiAlignLeft';
3
4
  export { default as IconUiAlignRight } from './IconUiAlignRight';
4
5
  export { default as IconUiAlipayCircle } from './IconUiAlipayCircle';
@@ -32,6 +33,7 @@ export { default as IconUiCheckCircleFill } from './IconUiCheckCircleFill';
32
33
  export { default as IconUiCheckCircle } from './IconUiCheckCircle';
33
34
  export { default as IconUiCheckSquare } from './IconUiCheckSquare';
34
35
  export { default as IconUiCheck } from './IconUiCheck';
36
+ export { default as IconUiCheckedDot } from './IconUiCheckedDot';
35
37
  export { default as IconUiChineseFill } from './IconUiChineseFill';
36
38
  export { default as IconUiClockCircle } from './IconUiClockCircle';
37
39
  export { default as IconUiCloseCircleFill } from './IconUiCloseCircleFill';
@@ -128,6 +130,8 @@ export { default as IconUiInfoCircle } from './IconUiInfoCircle';
128
130
  export { default as IconUiInfo } from './IconUiInfo';
129
131
  export { default as IconUiInteraction } from './IconUiInteraction';
130
132
  export { default as IconUiItalic } from './IconUiItalic';
133
+ export { default as IconUiKeyboardDelete } from './IconUiKeyboardDelete';
134
+ export { default as IconUiKeyboard } from './IconUiKeyboard';
131
135
  export { default as IconUiLanguage } from './IconUiLanguage';
132
136
  export { default as IconUiLaunch } from './IconUiLaunch';
133
137
  export { default as IconUiLayout } from './IconUiLayout';
@@ -238,6 +242,7 @@ export { default as IconUiStar } from './IconUiStar';
238
242
  export { default as IconUiStop } from './IconUiStop';
239
243
  export { default as IconUiStorage } from './IconUiStorage';
240
244
  export { default as IconUiStrikethrough } from './IconUiStrikethrough';
245
+ export { default as IconUiStrokeDasharray } from './IconUiStrokeDasharray';
241
246
  export { default as IconUiSubscribeAdd } from './IconUiSubscribeAdd';
242
247
  export { default as IconUiSubscribe } from './IconUiSubscribe';
243
248
  export { default as IconUiSubscribed } from './IconUiSubscribed';
@@ -245,6 +250,7 @@ export { default as IconUiSunFill } from './IconUiSunFill';
245
250
  export { default as IconUiSun } from './IconUiSun';
246
251
  export { default as IconUiSwap } from './IconUiSwap';
247
252
  export { default as IconUiSync } from './IconUiSync';
253
+ export { default as IconUiTable } from './IconUiTable';
248
254
  export { default as IconUiTag } from './IconUiTag';
249
255
  export { default as IconUiTags } from './IconUiTags';
250
256
  export { default as IconUiThumbDownFill } from './IconUiThumbDownFill';
@@ -275,9 +281,8 @@ export { default as IconUiVideoCamera } from './IconUiVideoCamera';
275
281
  export { default as IconUiVoice } from './IconUiVoice';
276
282
  export { default as IconUiWechat } from './IconUiWechat';
277
283
  export { default as IconUiWechatpay } from './IconUiWechatpay';
278
- export { default as IconUiWeiboCircleFill } from './IconUiWeiboCircleFill';
279
- export { default as IconUiWeibo } from './IconUiWeibo';
280
284
  export { default as IconUiWifi } from './IconUiWifi';
281
285
  export { default as IconUiWoman } from './IconUiWoman';
286
+ export { default as IconUiYoutube } from './IconUiYoutube';
282
287
  export { default as IconUiZoomIn } from './IconUiZoomIn';
283
288
  export { default as IconUiZoomOut } from './IconUiZoomOut';
@@ -1,24 +0,0 @@
1
- import React from 'react';
2
- import useProps from './useProps';
3
-
4
- function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-add' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 1024 1024'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path d='M527.317 85.333c9.515 0 12.95.982 16.427 2.859a19.34 19.34 0 0 1 8.064 8.064c1.877 3.477 2.859 6.912 2.859 16.427v356.65h356.65c9.515 0 12.95.982 16.427 2.859a19.34 19.34 0 0 1 8.064 8.064c1.877 3.477 2.859 6.912 2.859 16.427v30.634c0 9.515-.982 12.95-2.859 16.427a19.4 19.4 0 0 1-8.064 8.064c-3.477 1.877-6.912 2.859-16.427 2.859h-356.65v356.65c0 9.515-.982 12.95-2.859 16.427a19.4 19.4 0 0 1-8.064 8.064c-3.477 1.877-6.912 2.859-16.427 2.859h-30.634c-9.515 0-12.95-.982-16.427-2.859a19.4 19.4 0 0 1-8.064-8.064c-1.877-3.477-2.859-6.912-2.859-16.427l-.021-356.65h-356.63c-9.514 0-12.949-.982-16.426-2.859a19.4 19.4 0 0 1-8.064-8.064c-1.877-3.477-2.859-6.912-2.859-16.427v-30.634c0-9.515.982-12.95 2.859-16.427a19.4 19.4 0 0 1 8.064-8.064c3.477-1.877 6.912-2.859 16.427-2.859l356.65-.021v-356.63c0-9.514.982-12.949 2.859-16.426a19.4 19.4 0 0 1 8.064-8.064c3.477-1.877 6.912-2.859 16.427-2.859z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileAdd = React.forwardRef(Icon);
24
- export default IconUiMobileAdd;
@@ -1,24 +0,0 @@
1
- import React from 'react';
2
- import useProps from './useProps';
3
-
4
- function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-arrow-back' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 16 16'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path d='m2.1 8 5.4 5.4c.1.1.1.3 0 .5l-.5.5c-.1.1-.3.1-.5 0L.7 8.5c-.3-.3-.3-.7 0-.9l5.9-5.9c.1-.1.3-.1.5 0l.5.5c.1.1.1.3 0 .5z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileArrowBack = React.forwardRef(Icon);
24
- export default IconUiMobileArrowBack;
@@ -1,24 +0,0 @@
1
- import React from 'react';
2
- import useProps from './useProps';
3
-
4
- function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-arrow-down' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 1024 1024'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path d='m512 676.864 346.944-346.965a21.333 21.333 0 0 1 30.187 0l30.165 30.186a21.333 21.333 0 0 1 0 30.166L542.166 767.36a42.667 42.667 0 0 1-60.331 0L104.704 390.25a21.333 21.333 0 0 1 0-30.165l30.165-30.186a21.333 21.333 0 0 1 30.187 0z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileArrowDown = React.forwardRef(Icon);
24
- export default IconUiMobileArrowDown;
@@ -1,24 +0,0 @@
1
- import React from 'react';
2
- import useProps from './useProps';
3
-
4
- function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-arrow-in' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 16 16'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path d='M13.9 8 8.4 2.6c-.1-.1-.1-.3 0-.5l.5-.5c.1-.1.3-.1.5 0l5.9 5.9c.3.3.3.7 0 .9l-5.9 5.9c-.1.1-.3.1-.5 0l-.5-.5c-.1-.1-.1-.3 0-.5z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileArrowIn = React.forwardRef(Icon);
24
- export default IconUiMobileArrowIn;
@@ -1,24 +0,0 @@
1
- import React from 'react';
2
- import useProps from './useProps';
3
-
4
- function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-arrow-up' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 1024 1024'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path d='M512 329.472 165.056 676.416a21.333 21.333 0 0 1-30.187 0l-30.165-30.165a21.333 21.333 0 0 1 0-30.166l377.13-377.152a42.667 42.667 0 0 1 60.331 0l377.131 377.131a21.333 21.333 0 0 1 0 30.165l-30.165 30.166a21.333 21.333 0 0 1-30.187 0z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileArrowUp = React.forwardRef(Icon);
24
- export default IconUiMobileArrowUp;
@@ -1,28 +0,0 @@
1
- import React from 'react';
2
- import useProps from './useProps';
3
-
4
- function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-check' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 20 20'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path
18
- fillRule='evenodd'
19
- clipRule='evenodd'
20
- d='M16.702 4.47a.5.5 0 0 0-.705.06L8.33 13.596 3.82 9.724a.5.5 0 0 0-.705.054l-.652.758a.5.5 0 0 0 .054.706L7.361 15.4l.054.053.526.445.22.188a.5.5 0 0 0 .722-.047l8.641-10.218a.5.5 0 0 0-.059-.705l-.763-.645z'
21
- />
22
- </svg>
23
- );
24
- return e;
25
- }
26
-
27
- const IconUiMobileCheck = React.forwardRef(Icon);
28
- export default IconUiMobileCheck;
@@ -1,27 +0,0 @@
1
- import React from 'react';
2
- import useProps from './useProps';
3
-
4
- function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-check-bold' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 -0.97 10.07 10.07'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path
18
- d='M9.22.12a.49.49 0 0 0-.7.06L3.86 5.69 1.4 3.57a.51.51 0 0 0-.71.06l-.57.66A.49.49 0 0 0 .17 5L3 7.38v.07l.69.55a.53.53 0 0 0 .71 0l.6-.71a.2.2 0 0 0 0-.08l5-5.82a.51.51 0 0 0-.11-.71z'
19
- fillRule='evenodd'
20
- />
21
- </svg>
22
- );
23
- return e;
24
- }
25
-
26
- const IconUiMobileCheckBold = React.forwardRef(Icon);
27
- export default IconUiMobileCheckBold;
@@ -1,28 +0,0 @@
1
- import React from 'react';
2
- import useProps from './useProps';
3
-
4
- function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-circle-checked' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 20 20'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path
18
- d='M10 1c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9m4.9 6.3L10 13.2s0 .1-.1.1l-.6.7c-.1.1-.2.1-.3.2-.1 0-.3 0-.4-.1l-.6-.7-.1-.1-2.8-2.4c-.2-.2-.2-.5-.1-.7l.6-.7c.2-.2.5-.2.7-.1l2.5 2.1L13.5 6c.2-.2.5-.2.7-.1l.7.6c.1.3.2.6 0 .8'
19
- fillRule='evenodd'
20
- clipRule='evenodd'
21
- />
22
- </svg>
23
- );
24
- return e;
25
- }
26
-
27
- const IconUiMobileCircleChecked = React.forwardRef(Icon);
28
- export default IconUiMobileCircleChecked;
@@ -1,28 +0,0 @@
1
- import React from 'react';
2
- import useProps from './useProps';
3
-
4
- function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-circle-disabled' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 20 20'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path
18
- d='M18.375 10a8.375 8.375 0 1 1-16.75 0 8.375 8.375 0 0 1 16.75 0z'
19
- stroke='#e5e6eb'
20
- strokeWidth='1.25'
21
- />
22
- </svg>
23
- );
24
- return e;
25
- }
26
-
27
- const IconUiMobileCircleDisabled = React.forwardRef(Icon);
28
- export default IconUiMobileCircleDisabled;
@@ -1,24 +0,0 @@
1
- import React from 'react';
2
- import useProps from './useProps';
3
-
4
- function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-circle-unchecked' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 20 20'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path d='M10 19c-5 0-9-4-9-9s4-9 9-9 9 4 9 9-4 9-9 9m0-17c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileCircleUnchecked = React.forwardRef(Icon);
24
- export default IconUiMobileCircleUnchecked;
@@ -1,24 +0,0 @@
1
- import React from 'react';
2
- import useProps from './useProps';
3
-
4
- function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-clear' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 18 18'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path d='M9 1.1C4.7 1.1 1.1 4.7 1.1 9s3.5 7.9 7.9 7.9 7.9-3.5 7.9-7.9S13.3 1.1 9 1.1m3.4 10.2c.2.2.2.5 0 .7l-.5.5c-.2.2-.5.2-.7 0L9 10.3l-2.2 2.2c-.2.2-.5.2-.7 0l-.6-.5c-.2-.2-.2-.5 0-.7l2.2-2.2-2.2-2.3c-.2-.2-.2-.5 0-.7l.5-.5c.2-.2.5-.2.7 0l2.2 2.2 2.2-2.2c.2-.2.5-.2.7 0l.5.5c.2.2.2.5 0 .7L10.1 9z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileClear = React.forwardRef(Icon);
24
- export default IconUiMobileClear;
@@ -1,24 +0,0 @@
1
- import React from 'react';
2
- import useProps from './useProps';
3
-
4
- function Icon(props, ref) {
5
- const props_ = useProps({ ...props, name: 'ui-mobile-close' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 1024 1024'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path d='M509.568 447.083 796.16 160.469a21.333 21.333 0 0 1 30.165 0l30.166 30.166a21.333 21.333 0 0 1 0 30.186L569.899 507.435l286.613 286.592a21.333 21.333 0 0 1 0 30.165l-30.165 30.165a21.333 21.333 0 0 1-30.166 0L509.568 567.765 222.933 854.38a21.333 21.333 0 0 1-30.186 0l-30.166-30.166a21.333 21.333 0 0 1 0-30.165l286.614-286.613L162.603 220.8a21.333 21.333 0 0 1 0-30.187l30.165-30.165a21.333 21.333 0 0 1 30.187 0l286.613 286.613z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileClose = React.forwardRef(Icon);
24
- export default IconUiMobileClose;