@unicom-cloud/icons 0.1.11 → 0.1.13

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
@@ -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-close-bold' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 6.92 6.92'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path
18
- d='m6.16.15.62.62a.5.5 0 0 1 0 .7l-2 2 2 2a.51.51 0 0 1 0 .71l-.62.62a.51.51 0 0 1-.71 0l-2-2-2 2a.5.5 0 0 1-.7 0l-.6-.64a.5.5 0 0 1 0-.71l2-2-2-2a.48.48 0 0 1 0-.7l.62-.6a.48.48 0 0 1 .7 0l2 2 2-2a.5.5 0 0 1 .69 0'
19
- fillRule='evenodd'
20
- />
21
- </svg>
22
- );
23
- return e;
24
- }
25
-
26
- const IconUiMobileCloseBold = React.forwardRef(Icon);
27
- export default IconUiMobileCloseBold;
@@ -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-delete' });
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='M640 85.333A42.667 42.667 0 0 1 682.667 128l-.022 42.645 228.694.022c9.493 0 12.928.981 16.426 2.858a19.4 19.4 0 0 1 8.043 8.064c1.877 3.478 2.859 6.912 2.859 16.427v30.635c0 9.514-.982 12.949-2.859 16.426a19.4 19.4 0 0 1-8.064 8.064c-3.477 1.878-6.912 2.859-16.427 2.859l-57.984-.021V896a42.667 42.667 0 0 1-42.666 42.667H213.333A42.667 42.667 0 0 1 170.667 896l-.022-640.021-57.962.021c-9.515 0-12.95-.981-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.426v-30.635c0-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.858 16.427-2.858l228.629-.022.021-42.645A42.667 42.667 0 0 1 384 85.333zM768 256H256v597.333h512zM448 384a21.333 21.333 0 0 1 21.333 21.333V704A21.333 21.333 0 0 1 448 725.333h-42.667A21.333 21.333 0 0 1 384 704V405.333A21.333 21.333 0 0 1 405.333 384zm170.667 0A21.333 21.333 0 0 1 640 405.333V704a21.333 21.333 0 0 1-21.333 21.333H576A21.333 21.333 0 0 1 554.667 704V405.333A21.333 21.333 0 0 1 576 384z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileDelete = React.forwardRef(Icon);
24
- export default IconUiMobileDelete;
@@ -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-download' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- viewBox='0 0 16 16'
13
- ref={ref}
14
- {...props_}
15
- >
16
- <path
17
- d='M7.3 8.8V1.7h1.3v7.1l1.9-1.9.9.9L8 11.3 4.5 7.8l.9-.9zm-4 4.2v-1.3H2v2.7h12v-2.7h-1.3V13z'
18
- fillRule='evenodd'
19
- clipRule='evenodd'
20
- />
21
- </svg>
22
- );
23
- return e;
24
- }
25
-
26
- const IconUiMobileDownload = React.forwardRef(Icon);
27
- export default IconUiMobileDownload;
@@ -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-edit' });
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='M917.333 874.859a21.333 21.333 0 0 1 21.334 21.333v42.667a21.333 21.333 0 0 1-21.334 21.333H106.667a21.333 21.333 0 0 1-21.334-21.333v-42.667a21.333 21.333 0 0 1 21.334-21.333zM628.245 97.835l.086.085 146.517 147.285a42.667 42.667 0 0 1-.085 60.267l-25.131 25.11h.021L290.731 789.546H128a42.667 42.667 0 0 1-42.56-39.488l-.107-3.222V584.128L537.92 128l-.107-.107 30.08-30.08a42.667 42.667 0 0 1 60.352 0zM464.277 322.133 172.053 620.117v.107l82.56 82.56h.128l294.934-295.232-85.398-85.397zm132.438-135.018-72.662 74.09 85.952 85.952 73.11-73.194z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileEdit = React.forwardRef(Icon);
24
- export default IconUiMobileEdit;
@@ -1,25 +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-error-circle' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 24 24'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path d='M12 24C5.4 24 0 18.6 0 12S5.4 0 12 0s12 5.4 12 12-5.4 12-12 12m0-22.5C6.2 1.5 1.5 6.2 1.5 12S6.2 22.5 12 22.5 22.5 17.8 22.5 12 17.8 1.5 12 1.5' />
18
- <path d='m13.1 12 3.7-3.7c.3-.3.3-.7 0-1l-.1-.1c-.3-.3-.7-.3-1 0L12 10.9 8.3 7.2c-.3-.3-.7-.3-1 0l-.1.1c-.3.3-.3.7 0 1l3.7 3.7-3.7 3.7c-.3.3-.3.7 0 1l.1.1c.2.1.3.2.5.2s.4-.1.5-.2l3.7-3.7 3.7 3.7c.3.3.7.3 1 0l.1-.1c.3-.3.3-.7 0-1z' />
19
- </svg>
20
- );
21
- return e;
22
- }
23
-
24
- const IconUiMobileErrorCircle = React.forwardRef(Icon);
25
- export default IconUiMobileErrorCircle;
@@ -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-eye-invisible' });
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='m139.435 79.083 814.57 814.592a21.333 21.333 0 0 1 0 30.165l-30.165 30.165a21.333 21.333 0 0 1-30.165 0L79.083 139.435a21.333 21.333 0 0 1 0-30.187l30.165-30.165a21.333 21.333 0 0 1 30.187 0m31.125 242.282 55.787 55.787c-33.771 37.12-66.56 81.792-98.347 134.293 117.781 190.059 245.248 277.888 383.36 277.888 36.779 0 72.832-6.229 108.16-18.944l64.15 64.128c-54.763 26.774-112.257 40.15-172.374 40.15-180.672 0-336.875-120.854-468.63-362.582 39.915-75.306 82.56-138.88 127.894-190.72m340.736-172.032c184.235 0 340.907 120.918 470.037 362.752-40.874 74.454-84.032 137.451-129.45 188.992l-55.787-55.808c34.005-37.098 67.307-81.6 99.904-133.824-115.541-189.333-243.157-276.778-384.64-276.778-36.907 0-72.79 5.952-107.755 18.09l-64.469-64.426a394.3 394.3 0 0 1 172.16-38.998M342.357 493.205l188.438 188.438a170.667 170.667 0 0 1-188.438-188.438M512 341.333a170.667 170.667 0 0 1 169.643 189.462L493.205 342.357A171 171 0 0 1 512 341.333' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileEyeInvisible = React.forwardRef(Icon);
24
- export default IconUiMobileEyeInvisible;
@@ -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-eye-visible' });
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='M511.36 789.333c138.155 0 266.027-87.893 384.64-277.888-115.541-189.333-243.157-276.778-384.64-276.778-141.44 0-268.63 87.402-383.36 276.778 117.781 190.059 245.248 277.888 383.36 277.888m-.064-640c174.357 0 324.01 108.288 449.003 324.864a714 714 0 0 1 7.317 12.95l2.24 3.989a42.67 42.67 0 0 1-.213 41.75 1702 1702 0 0 1-8.534 14.805C832.79 765.675 682.88 874.667 511.275 874.667c-170.966 0-320.022-108.224-447.19-324.694a1048 1048 0 0 1-7.552-13.12L54.23 532.8a42.67 42.67 0 0 1-.213-41.557c4.48-8.107 8.15-14.699 11.03-19.691 123.882-214.827 272.64-322.219 446.25-322.219zm.704 192a170.667 170.667 0 1 0 0 341.334 170.667 170.667 0 0 0 0-341.334m0 85.334a85.333 85.333 0 1 1 0 170.666 85.333 85.333 0 0 1 0-170.666' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileEyeVisible = React.forwardRef(Icon);
24
- export default IconUiMobileEyeVisible;
@@ -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-eyelash-invisible' });
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 640c-28.053 0-55.488-2.219-82.112-6.443l-21.248 79.296a21.333 21.333 0 0 1-26.112 15.104l-41.216-11.05a21.333 21.333 0 0 1-15.083-26.134l20.8-77.653a474 474 0 0 1-97.13-45.653L182.1 635.264a21.333 21.333 0 0 1-30.186 0l-30.166-30.165a21.333 21.333 0 0 1 0-30.166l59.734-59.733a386.4 386.4 0 0 1-76.011-97.643c-1.813-3.328-4.01-7.68-6.613-13.013a21.33 21.33 0 0 1 4.074-24.32c3.904-3.947 7.083-7.04 9.515-9.237 10.453-9.536 17.835-16 24.277-22.443l1.302-1.344a19.157 19.157 0 0 1 31.189 5.61C222.336 471.958 349.568 554.668 512 554.668c155.648 0 285.845-80.491 338.09-190.976 1.43-2.987 2.987-6.614 4.673-10.838a18.133 18.133 0 0 1 29.632-6.08l27.413 27.414 8.085 8.085a21.33 21.33 0 0 1 4.011 24.576c-4.053 8.107-7.424 14.55-10.176 19.285a390.4 390.4 0 0 1-76.907 94.336l54.443 54.464a21.333 21.333 0 0 1 0 30.166l-30.165 30.165a21.333 21.333 0 0 1-30.166 0l-63.658-63.659a475.4 475.4 0 0 1-90.304 41.515l20.8 77.653a21.333 21.333 0 0 1-15.083 26.134l-41.216 11.05a21.333 21.333 0 0 1-26.112-15.104l-21.248-79.296A523.6 523.6 0 0 1 512 640' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileEyelashInvisible = React.forwardRef(Icon);
24
- export default IconUiMobileEyelashInvisible;
@@ -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-file' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- viewBox='0 0 16 16'
13
- ref={ref}
14
- {...props_}
15
- >
16
- <path
17
- d='M2.3 2.7c0-.7.6-1.3 1.3-1.3h7.3l2.7 2.7v9.3c0 .7-.6 1.3-1.3 1.3H3.7c-.7 0-1.3-.6-1.3-1.3V2.7zm8.1 0H3.7v10.7h8.7V4.6zm.3 5H5.3V6.3h5.3v1.4zm-2 2.6H5.3V9h3.3v1.3z'
18
- fillRule='evenodd'
19
- clipRule='evenodd'
20
- />
21
- </svg>
22
- );
23
- return e;
24
- }
25
-
26
- const IconUiMobileFile = React.forwardRef(Icon);
27
- export default IconUiMobileFile;
@@ -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-gift' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 -0.065 11 11'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path d='M8.5 2.37c.14-.65.06-1.17-.2-1.32s-1.3.3-1.91 1.32H4.68C4.06 1.37 3.2.85 2.8 1c-.26.15-.34.64-.21 1.25v.07zm-3.5 3H2v4.5h3zm4 0H6v4.5h3zm-4-2H1v1h4zm5 0H6v1h4zm-9.5-1h1.05A2 2 0 0 1 2.27.19c1-.58 2.38.23 3.26 1.66C6.42.42 7.81-.39 8.8.19a2 2 0 0 1 .72 2.18h1a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H10v5a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-5H.5a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileGift = React.forwardRef(Icon);
24
- export default IconUiMobileGift;
@@ -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-heart' });
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='M691.2 128c135.314 0 245.029 124.343 245.029 277.943 0 91.428-40.229 153.6-73.143 204.8C771.657 760.686 548.57 921.6 537.6 928.914q-16.457 10.972-32.914 10.972t-32.915-10.972c-10.971-7.314-230.4-168.228-321.828-318.171-32.914-51.2-73.143-113.372-73.143-204.8C76.8 252.343 186.514 128 321.829 128c47.542 0 84.114 14.629 120.685 40.229 21.943 14.628 40.229 36.571 58.515 62.171 18.285-25.6 36.571-47.543 58.514-62.171C607.086 142.629 647.314 128 691.2 128m0 84.114c-51.2 0-109.714 47.543-179.2 138.972-69.486-91.429-131.657-138.972-179.2-138.972-87.771 0-160.914 84.115-160.914 190.172 0 47.543 14.628 84.114 43.885 135.314l3.658 7.314c3.657 3.657 7.314 10.972 10.971 18.286s10.971 18.286 18.286 25.6c25.6 36.571 65.828 80.457 109.714 124.343 36.571 32.914 76.8 69.486 117.029 98.743 10.971 7.314 25.6 21.943 36.571 29.257 10.971-10.972 25.6-18.286 40.229-29.257 40.228-32.915 80.457-65.829 117.028-102.4C713.143 665.6 753.371 625.37 778.971 588.8c7.315-10.971 14.629-18.286 18.286-29.257 7.314-10.972 10.972-18.286 14.629-25.6 29.257-51.2 43.885-87.772 43.885-135.314-3.657-102.4-76.8-186.515-164.571-186.515' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileHeart = React.forwardRef(Icon);
24
- export default IconUiMobileHeart;
@@ -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-home' });
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='M128 938.667A42.667 42.667 0 0 1 85.333 896V384a42.67 42.67 0 0 1 18.987-35.477l383.21-256a42.67 42.67 0 0 1 47.34-.043l384.767 256a42.67 42.67 0 0 1 19.03 35.52v512A42.667 42.667 0 0 1 896 938.667zm341.333-21.334a21.333 21.333 0 0 1-20.97 21.334l127.274-.022-2.133-.128a21.333 21.333 0 0 1-18.837-21.184v-64h-85.334zm0-64.021-21.333.021h21.333zm106.667.021-21.333-.021v.021zm-64.725-674.048-340.608 227.52v446.528H384v-256a42.667 42.667 0 0 1 42.667-42.666h170.666A42.667 42.667 0 0 1 640 597.333v256h213.333V406.87zM554.667 640h-85.334v213.312h85.334z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileHome = React.forwardRef(Icon);
24
- export default IconUiMobileHome;
@@ -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-like-circle' });
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='M569.067 53.184c51.733 23.552 135.018 74.987 135.018 160.213 0 32.128-14.293 74.752-42.816 127.872h161.664c127.318 0 156.566 112.384 127.318 196.587L822.933 873.003c-10.752 38.976-46.57 66.026-87.466 66.026H213.013V341.27h87.339L490.219 71.168c11.989-19.072 44.373-33.707 78.848-17.984m-419.734 288.15v597.333H64V341.333zm398.443-203.67L344.683 426.603h-46.336v427.093h437.12c2.645 0 4.693-1.557 5.226-3.413l1.067-3.84L869.995 508.82c16.853-49.664.042-82.218-47.062-82.218H518.55l67.563-125.718c22.464-41.813 32.64-72.213 32.64-87.488 0-24.746-26.539-52.778-70.976-75.733z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileLikeCircle = React.forwardRef(Icon);
24
- export default IconUiMobileLikeCircle;
@@ -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-minus' });
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='M115.2 467.2h819.2c6.4 0 6.4 6.4 6.4 6.4V544c0 6.4-6.4 6.4-6.4 6.4H96c-6.4 0-6.4-6.4-6.4-6.4v-64c0-6.4 6.4-6.4 6.4-6.4 6.4-6.4 6.4-6.4 19.2-6.4' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileMinus = React.forwardRef(Icon);
24
- export default IconUiMobileMinus;
@@ -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-more' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 48 48'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path d='M35 21h6v6h-6zM7 21h6v6H7zm14 0h6v6h-6z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileMore = React.forwardRef(Icon);
24
- export default IconUiMobileMore;
@@ -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-notice' });
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='M618.667 853.333A21.333 21.333 0 0 1 640 874.667v42.666a21.333 21.333 0 0 1-21.333 21.334H405.333A21.333 21.333 0 0 1 384 917.333v-42.666a21.333 21.333 0 0 1 21.333-21.334zM576 64a21.333 21.333 0 0 1 21.333 21.333v32.427c147.222 39.125 256 177.067 256 341.248V704h64a21.333 21.333 0 0 1 21.334 21.333V768a21.333 21.333 0 0 1-21.334 21.333H106.667A21.333 21.333 0 0 1 85.333 768v-42.667A21.333 21.333 0 0 1 106.667 704h64V459.008c0-164.181 108.8-302.123 256-341.248V85.333A21.333 21.333 0 0 1 448 64zm-64 128c-141.376 0-256 119.595-256 267.136V704h512V459.136C768 311.595 653.376 192 512 192' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileNotice = React.forwardRef(Icon);
24
- export default IconUiMobileNotice;
@@ -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-notice-off' });
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='M118.101 57.75 962.86 902.506a21.333 21.333 0 0 1 0 30.165l-30.187 30.187a21.333 21.333 0 0 1-30.165 0L57.749 118.1a21.333 21.333 0 0 1 0-30.186l30.166-30.166a21.333 21.333 0 0 1 30.186 0zm500.566 795.583A21.333 21.333 0 0 1 640 874.667v42.666a21.333 21.333 0 0 1-21.333 21.334H405.333A21.333 21.333 0 0 1 384 917.333v-42.666a21.333 21.333 0 0 1 21.333-21.334zM190.25 341.1l69.888 69.888A280 280 0 0 0 256 459.136V704h297.152l85.333 85.333H106.667A21.333 21.333 0 0 1 85.333 768v-42.155a21.333 21.333 0 0 1 21.334-21.333h.512l63.488 1.515V459.008c0-41.365 6.912-81.067 19.584-117.91zM576 64a21.333 21.333 0 0 1 21.333 21.333v32.427c147.222 39.125 256 177.067 256 341.248v243.499L768 617.173V459.157C768 311.595 653.376 192 512 192c-48.021 0-92.97 13.803-131.37 37.803l-61.526-61.526a334.8 334.8 0 0 1 107.563-50.517V85.333A21.333 21.333 0 0 1 448 64z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileNoticeOff = React.forwardRef(Icon);
24
- export default IconUiMobileNoticeOff;
@@ -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-picture' });
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='M896 85.333a42.667 42.667 0 0 1 42.56 39.467l.107 3.2v768a42.667 42.667 0 0 1-39.467 42.56l-3.2.107H128A42.667 42.667 0 0 1 85.44 899.2l-.107-3.2V128A42.667 42.667 0 0 1 124.8 85.44l3.2-.107zm-42.667 85.334H170.667v682.666h682.666zm-90.325 263.808A17.07 17.07 0 0 1 768 446.528V755.2a12.8 12.8 0 0 1-12.8 12.8H436.245a12.8 12.8 0 0 1-3.456-.47l-182.528-.469a12.8 12.8 0 0 1-9.002-21.845l176.32-176.341a17.067 17.067 0 0 1 24.128 0l81.365 81.365 215.787-215.765a17.067 17.067 0 0 1 24.149 0M384 256v128H256V256z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobilePicture = React.forwardRef(Icon);
24
- export default IconUiMobilePicture;
@@ -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-play' });
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='m236.416 92.16 597.333 383.957a42.667 42.667 0 0 1 0 71.766L236.416 931.819c-28.416 18.261-65.75-2.112-65.75-35.883V128.064c0-33.77 37.334-54.144 65.75-35.904M256 206.23v611.583L731.755 512 256 206.208z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobilePlay = React.forwardRef(Icon);
24
- export default IconUiMobilePlay;
@@ -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-question-circle' });
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
18
- fillRule='evenodd'
19
- clipRule='evenodd'
20
- d='M7.982.68a7.312 7.312 0 1 1 0 14.625 7.312 7.312 0 0 1 0-14.625m0 1.33a5.983 5.983 0 1 0 0 11.965 5.983 5.983 0 0 0 0-11.966zm.333 8.641c.183 0 .332.15.332.333v.664a.33.33 0 0 1-.332.333H7.65a.33.33 0 0 1-.332-.333v-.664c0-.184.148-.333.332-.333zm-.427-6.647q1.185-.001 1.97.574.784.574.784 1.7 0 .692-.341 1.165-.2.287-.766.733l-.373.293q-.303.24-.403.558a2 2 0 0 0-.048.323.33.33 0 0 1-.331.304h-.744a.33.33 0 0 1-.331-.363q.064-.694.137-.878.136-.343.703-.79l.383-.302c.126-.096.774-.553.774-.957 0-.405-.07-.553-.273-.775s-.66-.294-1.073-.294c-.405 0-.752.108-.922.38a2 2 0 0 0-.189.4 1.4 1.4 0 0 0-.048.204.33.33 0 0 1-.328.276h-.782a.332.332 0 0 1-.33-.37q.013-.111.025-.185.195-1.083.985-1.592.62-.404 1.521-.404'
21
- />
22
- </svg>
23
- );
24
- return e;
25
- }
26
-
27
- const IconUiMobileQuestionCircle = React.forwardRef(Icon);
28
- export default IconUiMobileQuestionCircle;
@@ -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-refresh' });
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='M618.667 426.667a21.333 21.333 0 0 1-21.334-21.334v-42.666a21.333 21.333 0 0 1 21.334-21.334H757.12c-53.973-77.376-143.616-128-245.12-128-164.95 0-298.667 133.718-298.667 298.667S347.051 810.667 512 810.667c135.296 0 249.579-89.963 286.293-213.334h88.192C847.66 768.363 694.741 896 512 896c-212.075 0-384-171.925-384-384s171.925-384 384-384c120.64 0 228.288 55.637 298.688 142.656l-.021-121.323A21.333 21.333 0 0 1 832 128h42.667A21.333 21.333 0 0 1 896 149.333V384a42.667 42.667 0 0 1-39.467 42.56l-3.2.107z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileRefresh = React.forwardRef(Icon);
24
- export default IconUiMobileRefresh;
@@ -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-sad' });
6
-
7
- const e = (
8
- <svg
9
- width='1em'
10
- height='1em'
11
- fill='currentColor'
12
- stroke='none'
13
- viewBox='0 0 28 28'
14
- ref={ref}
15
- {...props_}
16
- >
17
- <path d='M14 1.2c7.1 0 12.8 5.7 12.8 12.8S21.1 26.8 14 26.8 1.2 21.1 1.2 14 6.9 1.2 14 1.2m0 2.3C8.2 3.5 3.5 8.2 3.5 14S8.2 24.5 14 24.5 24.5 19.8 24.5 14 19.8 3.5 14 3.5m4.7 6.4v3.5h-2.3V9.9zm-7 0v3.5H9.3V9.9zm-2.4 7.6h9.3v2.3H9.3z' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileSad = React.forwardRef(Icon);
24
- export default IconUiMobileSad;
@@ -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-scan' });
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='M85.333 320V128A42.667 42.667 0 0 1 128 85.333h192a21.333 21.333 0 0 1 21.333 21.334v42.666A21.333 21.333 0 0 1 320 170.667H170.667V320a21.333 21.333 0 0 1-21.334 21.333h-42.666A21.333 21.333 0 0 1 85.333 320m85.334 384v149.333H320a21.333 21.333 0 0 1 21.333 21.334v42.666A21.333 21.333 0 0 1 320 938.667H128A42.667 42.667 0 0 1 85.333 896V704a21.333 21.333 0 0 1 21.334-21.333h42.666A21.333 21.333 0 0 1 170.667 704m746.666-362.667h-42.666A21.333 21.333 0 0 1 853.333 320V170.667H704a21.333 21.333 0 0 1-21.333-21.334v-42.666A21.333 21.333 0 0 1 704 85.333h192A42.667 42.667 0 0 1 938.667 128v192a21.333 21.333 0 0 1-21.334 21.333M938.667 704v192A42.667 42.667 0 0 1 896 938.667H704a21.333 21.333 0 0 1-21.333-21.334v-42.666A21.333 21.333 0 0 1 704 853.333h149.333V704a21.333 21.333 0 0 1 21.334-21.333h42.666A21.333 21.333 0 0 1 938.667 704m-832-234.667h810.666a21.333 21.333 0 0 1 21.334 21.334v42.666a21.333 21.333 0 0 1-21.334 21.334H106.667a21.333 21.333 0 0 1-21.334-21.334v-42.666a21.333 21.333 0 0 1 21.334-21.334' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileScan = React.forwardRef(Icon);
24
- export default IconUiMobileScan;
@@ -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-search' });
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='M469.333 106.667C669.632 106.667 832 269.035 832 469.333c0 75.712-23.19 146.006-62.87 204.16l144.683 144.683a21.333 21.333 0 0 1 0 30.165l-36.202 36.203a21.333 21.333 0 0 1-30.166 0L706.56 743.68A361.26 361.26 0 0 1 469.333 832c-200.298 0-362.666-162.368-362.666-362.667s162.368-362.666 362.666-362.666m0 89.6c-150.826 0-273.066 122.24-273.066 273.066S318.507 742.4 469.333 742.4 742.4 620.16 742.4 469.333 620.16 196.267 469.333 196.267' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileSearch = React.forwardRef(Icon);
24
- export default IconUiMobileSearch;
@@ -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-setting' });
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 46.55c34.517 0 68.565 3.797 101.696 11.263l19.136 4.288L692.48 198.08l146.837-16.043 13.27 14.443a465.5 465.5 0 0 1 101.802 176.939l5.76 18.602-11.456 15.723L872.747 512l87.402 119.979-5.76 18.602A465.5 465.5 0 0 1 852.587 827.52l-13.27 14.443L692.48 825.92l-59.648 135.979-19.136 4.288c-33.13 7.466-67.2 11.264-101.696 11.264-34.517 0-68.587-3.798-101.717-11.264l-19.136-4.31-7.894-17.941L331.52 825.92l-146.837 16.043-13.27-14.443A465.5 465.5 0 0 1 69.611 650.56l-5.76-18.603 11.456-15.722L151.253 512 63.851 392.043l5.76-18.603a465.5 465.5 0 0 1 101.802-176.96l13.27-14.443L331.52 198.08l59.627-135.957 19.136-4.31c33.13-7.466 67.2-11.264 101.717-11.264zm0 77.567a387.6 387.6 0 0 0-65.792 5.611L398.421 238.72a63.49 63.49 0 0 1-65.066 37.61l-117.483-12.863a388 388 0 0 0-66.048 114.837l70.165 96.32c16.214 22.272 16.214 52.48 0 74.752l-70.186 96.32a388 388 0 0 0 66.069 114.837l117.504-12.864a63.49 63.49 0 0 1 65.045 37.632l47.787 108.971a387.4 387.4 0 0 0 65.792 5.61 387.3 387.3 0 0 0 65.77-5.61l47.81-108.992a63.49 63.49 0 0 1 65.066-37.61l117.483 12.863a388 388 0 0 0 66.048-114.816l-70.165-96.341a63.49 63.49 0 0 1 0-74.752l70.165-96.341a388 388 0 0 0-66.048-114.816L690.624 276.33a63.49 63.49 0 0 1-65.045-37.611l-47.787-108.992a386.3 386.3 0 0 0-65.792-5.61m0 193.942c106.752 0 193.195 86.869 193.195 193.941S618.752 705.92 512 705.92 318.805 619.093 318.805 512 405.248 318.08 512 318.08zm0 77.568c-63.808 0-115.627 52.053-115.627 116.373 0 64.299 51.819 116.373 115.627 116.373S627.627 576.32 627.627 512c0-64.299-51.819-116.373-115.627-116.373' />
18
- </svg>
19
- );
20
- return e;
21
- }
22
-
23
- const IconUiMobileSetting = React.forwardRef(Icon);
24
- export default IconUiMobileSetting;