@hashicorp/flight-icons 2.19.0 → 2.20.0

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 (66) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/catalog.json +217 -1
  3. package/package.json +1 -1
  4. package/svg/google-docs-16.svg +1 -0
  5. package/svg/google-docs-24.svg +1 -0
  6. package/svg/google-docs-color-16.svg +1 -0
  7. package/svg/google-docs-color-24.svg +1 -0
  8. package/svg/google-drive-16.svg +1 -0
  9. package/svg/google-drive-24.svg +1 -0
  10. package/svg/google-drive-color-16.svg +1 -0
  11. package/svg/google-drive-color-24.svg +1 -0
  12. package/svg/google-forms-16.svg +1 -0
  13. package/svg/google-forms-24.svg +1 -0
  14. package/svg/google-forms-color-16.svg +1 -0
  15. package/svg/google-forms-color-24.svg +1 -0
  16. package/svg/google-sheets-16.svg +1 -0
  17. package/svg/google-sheets-24.svg +1 -0
  18. package/svg/google-sheets-color-16.svg +1 -0
  19. package/svg/google-sheets-color-24.svg +1 -0
  20. package/svg/google-slides-16.svg +1 -0
  21. package/svg/google-slides-24.svg +1 -0
  22. package/svg/google-slides-color-16.svg +1 -0
  23. package/svg/google-slides-color-24.svg +1 -0
  24. package/svg/index.js +1 -1
  25. package/svg/linkedin-16.svg +1 -1
  26. package/svg/linkedin-color-16.svg +1 -1
  27. package/svg/linode-color-16.svg +1 -1
  28. package/svg/linode-color-24.svg +1 -1
  29. package/svg/linux-color-16.svg +1 -1
  30. package/svg/linux-color-24.svg +1 -1
  31. package/svg/loading-static-16.svg +1 -0
  32. package/svg/loading-static-24.svg +1 -0
  33. package/svg/running-static-16.svg +1 -0
  34. package/svg/running-static-24.svg +1 -0
  35. package/svg-react/google-docs-16.tsx +36 -0
  36. package/svg-react/google-docs-24.tsx +36 -0
  37. package/svg-react/google-docs-color-16.tsx +38 -0
  38. package/svg-react/google-docs-color-24.tsx +38 -0
  39. package/svg-react/google-drive-16.tsx +34 -0
  40. package/svg-react/google-drive-24.tsx +34 -0
  41. package/svg-react/google-drive-color-16.tsx +53 -0
  42. package/svg-react/google-drive-color-24.tsx +53 -0
  43. package/svg-react/google-forms-16.tsx +35 -0
  44. package/svg-react/google-forms-24.tsx +35 -0
  45. package/svg-react/google-forms-color-16.tsx +37 -0
  46. package/svg-react/google-forms-color-24.tsx +37 -0
  47. package/svg-react/google-sheets-16.tsx +37 -0
  48. package/svg-react/google-sheets-24.tsx +37 -0
  49. package/svg-react/google-sheets-color-16.tsx +38 -0
  50. package/svg-react/google-sheets-color-24.tsx +38 -0
  51. package/svg-react/google-slides-16.tsx +37 -0
  52. package/svg-react/google-slides-24.tsx +37 -0
  53. package/svg-react/google-slides-color-16.tsx +40 -0
  54. package/svg-react/google-slides-color-24.tsx +40 -0
  55. package/svg-react/index.ts +24 -0
  56. package/svg-react/linkedin-16.tsx +1 -1
  57. package/svg-react/linkedin-color-16.tsx +1 -1
  58. package/svg-react/linode-color-16.tsx +2 -2
  59. package/svg-react/linode-color-24.tsx +4 -4
  60. package/svg-react/linux-color-16.tsx +5 -5
  61. package/svg-react/linux-color-24.tsx +1 -1
  62. package/svg-react/loading-static-16.tsx +36 -0
  63. package/svg-react/loading-static-24.tsx +36 -0
  64. package/svg-react/running-static-16.tsx +36 -0
  65. package/svg-react/running-static-24.tsx +36 -0
  66. package/svg-sprite/svg-sprite-module.js +1 -1
@@ -0,0 +1,37 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconGoogleSlides24 = forwardRef<SVGSVGElement, IconProps>(
5
+ ({ color = 'currentColor', title, ...props }, svgRef) => {
6
+ const titleId = useMemo(
7
+ () =>
8
+ title
9
+ ? 'title-' + Math.random().toString(36).substr(2, 9)
10
+ : undefined,
11
+ [title]
12
+ );
13
+ return (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ width={24}
17
+ height={24}
18
+ fill="none"
19
+ viewBox="0 0 24 24"
20
+ aria-hidden={!title}
21
+ ref={svgRef}
22
+ aria-labelledby={titleId}
23
+ {...props}
24
+ >
25
+ {title ? <title id={titleId}>{title}</title> : null}
26
+ <g fill={color}>
27
+ <path d="M15.398 10.864H8.602v3.863h6.796v-3.863z" />
28
+ <path
29
+ fillRule="evenodd"
30
+ d="M6.11 22h11.78c.748 0 1.36-.614 1.36-1.364V7l-4.984-5H6.109c-.747 0-1.359.614-1.359 1.364v17.272c0 .75.612 1.364 1.36 1.364zM16.53 9.727H7.47v6.137h9.062V9.727z"
31
+ clipRule="evenodd"
32
+ />
33
+ </g>
34
+ </svg>
35
+ );
36
+ }
37
+ );
@@ -0,0 +1,40 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconGoogleSlidesColor16 = forwardRef<SVGSVGElement, IconProps>(
5
+ ({ color = 'currentColor', title, ...props }, svgRef) => {
6
+ const titleId = useMemo(
7
+ () =>
8
+ title
9
+ ? 'title-' + Math.random().toString(36).substr(2, 9)
10
+ : undefined,
11
+ [title]
12
+ );
13
+ return (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ width={16}
17
+ height={16}
18
+ fill="none"
19
+ viewBox="0 0 16 16"
20
+ aria-hidden={!title}
21
+ ref={svgRef}
22
+ aria-labelledby={titleId}
23
+ {...props}
24
+ >
25
+ {title ? <title id={titleId}>{title}</title> : null}
26
+ <path
27
+ fill="#FBBC04"
28
+ d="M12.063 15H3.937A.949.949 0 013 14.046V1.955C3 1.43 3.422 1 3.938 1h5.624L13 4.5v9.546a.949.949 0 01-.938.954z"
29
+ />
30
+ <path fill="#F29900" d="M9.563 1L13 4.5H9.562V1z" />
31
+ <path
32
+ fill="#fff"
33
+ fillRule="evenodd"
34
+ d="M11.125 6.41h-6.25v4.295h6.25V6.409zm-.781.795H5.656v2.704h4.688V7.205z"
35
+ clipRule="evenodd"
36
+ />
37
+ </svg>
38
+ );
39
+ }
40
+ );
@@ -0,0 +1,40 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconGoogleSlidesColor24 = forwardRef<SVGSVGElement, IconProps>(
5
+ ({ color = 'currentColor', title, ...props }, svgRef) => {
6
+ const titleId = useMemo(
7
+ () =>
8
+ title
9
+ ? 'title-' + Math.random().toString(36).substr(2, 9)
10
+ : undefined,
11
+ [title]
12
+ );
13
+ return (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ width={24}
17
+ height={24}
18
+ fill="none"
19
+ viewBox="0 0 24 24"
20
+ aria-hidden={!title}
21
+ ref={svgRef}
22
+ aria-labelledby={titleId}
23
+ {...props}
24
+ >
25
+ {title ? <title id={titleId}>{title}</title> : null}
26
+ <path
27
+ fill="#FBBC04"
28
+ d="M17.89 22H6.11c-.748 0-1.36-.614-1.36-1.364V3.364C4.75 2.614 5.362 2 6.11 2h8.156l4.984 5v13.636c0 .75-.612 1.364-1.36 1.364z"
29
+ />
30
+ <path fill="#F29900" d="M14.266 2l4.984 5h-4.984V2z" />
31
+ <path
32
+ fill="#FDFFFF"
33
+ fillRule="evenodd"
34
+ d="M16.531 9.727H7.47v6.137h9.062V9.727zm-1.133 1.137H8.602v3.863h6.796v-3.863z"
35
+ clipRule="evenodd"
36
+ />
37
+ </svg>
38
+ );
39
+ }
40
+ );
@@ -1,7 +1,11 @@
1
1
  export { IconLoading24 } from './loading-24';
2
2
  export { IconLoading16 } from './loading-16';
3
+ export { IconLoadingStatic24 } from './loading-static-24';
4
+ export { IconLoadingStatic16 } from './loading-static-16';
3
5
  export { IconRunning24 } from './running-24';
4
6
  export { IconRunning16 } from './running-16';
7
+ export { IconRunningStatic24 } from './running-static-24';
8
+ export { IconRunningStatic16 } from './running-static-16';
5
9
  export { IconApple24 } from './apple-24';
6
10
  export { IconApple16 } from './apple-16';
7
11
  export { IconAppleColor24 } from './apple-color-24';
@@ -126,6 +130,26 @@ export { IconGoogle24 } from './google-24';
126
130
  export { IconGoogle16 } from './google-16';
127
131
  export { IconGoogleColor24 } from './google-color-24';
128
132
  export { IconGoogleColor16 } from './google-color-16';
133
+ export { IconGoogleDocs24 } from './google-docs-24';
134
+ export { IconGoogleDocs16 } from './google-docs-16';
135
+ export { IconGoogleDocsColor24 } from './google-docs-color-24';
136
+ export { IconGoogleDocsColor16 } from './google-docs-color-16';
137
+ export { IconGoogleDrive24 } from './google-drive-24';
138
+ export { IconGoogleDrive16 } from './google-drive-16';
139
+ export { IconGoogleDriveColor24 } from './google-drive-color-24';
140
+ export { IconGoogleDriveColor16 } from './google-drive-color-16';
141
+ export { IconGoogleForms24 } from './google-forms-24';
142
+ export { IconGoogleForms16 } from './google-forms-16';
143
+ export { IconGoogleFormsColor24 } from './google-forms-color-24';
144
+ export { IconGoogleFormsColor16 } from './google-forms-color-16';
145
+ export { IconGoogleSheets24 } from './google-sheets-24';
146
+ export { IconGoogleSheets16 } from './google-sheets-16';
147
+ export { IconGoogleSheetsColor24 } from './google-sheets-color-24';
148
+ export { IconGoogleSheetsColor16 } from './google-sheets-color-16';
149
+ export { IconGoogleSlides24 } from './google-slides-24';
150
+ export { IconGoogleSlides16 } from './google-slides-16';
151
+ export { IconGoogleSlidesColor24 } from './google-slides-color-24';
152
+ export { IconGoogleSlidesColor16 } from './google-slides-color-16';
129
153
  export { IconGrafana24 } from './grafana-24';
130
154
  export { IconGrafana16 } from './grafana-16';
131
155
  export { IconGrafanaColor24 } from './grafana-color-24';
@@ -25,7 +25,7 @@ export const IconLinkedin16 = forwardRef<SVGSVGElement, IconProps>(
25
25
  {title ? <title id={titleId}>{title}</title> : null}
26
26
  <path
27
27
  fill={color}
28
- d="M12.225 12.225h-1.778V9.44c0-.664-.012-1.519-.925-1.519-.926 0-1.068.724-1.068 1.47v2.834H6.676V6.498h1.707v.783h.024c.348-.594.996-.95 1.684-.925 1.802 0 2.135 1.185 2.135 2.728l-.001 3.14zM4.67 5.715a1.037 1.037 0 01-1.032-1.031c0-.566.466-1.032 1.032-1.032.566 0 1.031.466 1.032 1.032 0 .566-.466 1.032-1.032 1.032zm.889 6.51h-1.78V6.498h1.78v5.727zM13.11 2H2.885A.88.88 0 002 2.866v10.268a.88.88 0 00.885.866h10.226a.882.882 0 00.889-.866V2.865a.88.88 0 00-.889-.864z"
28
+ d="M12.225 12.225h-1.778V9.44c0-.664-.012-1.518-.925-1.518-.926 0-1.068.723-1.068 1.47v2.833H6.676V6.499h1.707v.782h.024c.348-.594.996-.95 1.684-.925 1.802 0 2.135 1.186 2.135 2.728l-.001 3.14zM4.67 5.715a1.037 1.037 0 01-1.032-1.03c0-.567.466-1.033 1.032-1.033.566 0 1.031.466 1.032 1.032 0 .566-.466 1.032-1.032 1.032zm.889 6.51h-1.78V6.499h1.78v5.726zM13.11 2H2.885A.88.88 0 002 2.866v10.268a.88.88 0 00.885.866h10.226a.882.882 0 00.889-.866V2.865a.88.88 0 00-.889-.864z"
29
29
  />
30
30
  </svg>
31
31
  );
@@ -25,7 +25,7 @@ export const IconLinkedinColor16 = forwardRef<SVGSVGElement, IconProps>(
25
25
  {title ? <title id={titleId}>{title}</title> : null}
26
26
  <path
27
27
  fill="#0A66C2"
28
- d="M12.225 12.225h-1.778V9.44c0-.664-.012-1.519-.925-1.519-.926 0-1.068.724-1.068 1.47v2.834H6.676V6.498h1.707v.783h.024c.348-.594.996-.95 1.684-.925 1.802 0 2.135 1.185 2.135 2.728l-.001 3.14zM4.67 5.715a1.037 1.037 0 01-1.032-1.031c0-.566.466-1.032 1.032-1.032.566 0 1.031.466 1.032 1.032 0 .566-.466 1.032-1.032 1.032zm.889 6.51h-1.78V6.498h1.78v5.727zM13.11 2H2.885A.88.88 0 002 2.866v10.268a.88.88 0 00.885.866h10.226a.882.882 0 00.889-.866V2.865a.88.88 0 00-.889-.864z"
28
+ d="M12.225 12.225h-1.778V9.44c0-.664-.012-1.518-.925-1.518-.926 0-1.068.723-1.068 1.47v2.833H6.676V6.499h1.707v.782h.024c.348-.594.996-.95 1.684-.925 1.802 0 2.135 1.186 2.135 2.728l-.001 3.14zM4.67 5.715a1.037 1.037 0 01-1.032-1.03c0-.567.466-1.033 1.032-1.033.566 0 1.031.466 1.032 1.032 0 .566-.466 1.032-1.032 1.032zm.889 6.51h-1.78V6.499h1.78v5.726zM13.11 2H2.885A.88.88 0 002 2.866v10.268a.88.88 0 00.885.866h10.226a.882.882 0 00.889-.866V2.865a.88.88 0 00-.889-.864z"
29
29
  />
30
30
  </svg>
31
31
  );
@@ -49,7 +49,7 @@ export const IconLinodeColor16 = forwardRef<SVGSVGElement, IconProps>(
49
49
  />
50
50
  <path
51
51
  fill="#004B16"
52
- d="M5.71 11.71L5.28 8.848 3.066 7.06l.592 2.775L5.71 11.71z"
52
+ d="M5.71 11.71L5.28 8.85l-2.213-1.79.592 2.775L5.71 11.71z"
53
53
  />
54
54
  <path
55
55
  fill="#000"
@@ -57,7 +57,7 @@ export const IconLinodeColor16 = forwardRef<SVGSVGElement, IconProps>(
57
57
  />
58
58
  <path
59
59
  fill="#004B16"
60
- d="M5.072 7.482l-.591-3.92L2 2.067l.787 3.686 2.285 1.73z"
60
+ d="M5.072 7.482l-.591-3.92L2 2.065l.787 3.686 2.285 1.73z"
61
61
  />
62
62
  <path
63
63
  fill="#000"
@@ -29,15 +29,15 @@ export const IconLinodeColor24 = forwardRef<SVGSVGElement, IconProps>(
29
29
  />
30
30
  <path
31
31
  fill="#000"
32
- d="M17.795 12.494L20 10.854l-2.657-1.532-2.242 1.426 2.694 1.746z"
32
+ d="M17.795 12.495L20 10.853l-2.657-1.531-2.242 1.426 2.694 1.747z"
33
33
  />
34
34
  <path
35
35
  fill="#004B16"
36
- d="M17.551 15.415l.244-2.92-2.695-1.747-.055 2.852 2.506 1.815zM13.954 18.385V15.36l-2.722-2.152.214 2.97 2.508 2.207z"
36
+ d="M17.551 15.415l.244-2.92-2.695-1.747-.055 2.852 2.506 1.815zM13.954 18.385V15.36l-2.722-2.152.214 2.971 2.508 2.206z"
37
37
  />
38
38
  <path
39
39
  fill="#000"
40
- d="M13.954 15.36l2.735-2.043-2.707-1.859-2.75 1.75 2.723 2.152z"
40
+ d="M13.954 15.36l2.735-2.044-2.707-1.858-2.75 1.75 2.723 2.152z"
41
41
  />
42
42
  <path
43
43
  fill="#004B16"
@@ -49,7 +49,7 @@ export const IconLinodeColor24 = forwardRef<SVGSVGElement, IconProps>(
49
49
  />
50
50
  <path
51
51
  fill="#004B16"
52
- d="M8.947 17.3l-.575-4.088-2.951-2.556.79 3.964 2.736 2.68z"
52
+ d="M8.947 17.3l-.575-4.088-2.951-2.556.79 3.965L8.947 17.3z"
53
53
  />
54
54
  <path
55
55
  fill="#000"
@@ -25,11 +25,11 @@ export const IconLinuxColor16 = forwardRef<SVGSVGElement, IconProps>(
25
25
  {title ? <title id={titleId}>{title}</title> : null}
26
26
  <path
27
27
  fill="#202020"
28
- d="M13.338 12.033c-.1-.112-.146-.319-.197-.54-.05-.22-.107-.457-.288-.61v-.001a.756.756 0 00-.223-.134c.252-.745.153-1.487-.1-2.157-.312-.823-.855-1.54-1.27-2.03-.464-.586-.918-1.142-.91-1.963.014-1.254.138-3.579-2.068-3.582-.09 0-.183.004-.28.012-2.466.198-1.812 2.803-1.849 3.675-.045.638-.174 1.14-.613 1.764-.515.613-1.24 1.604-1.584 2.637-.162.487-.24.984-.168 1.454-.023.02-.044.041-.064.063-.151.161-.263.357-.388.489-.116.116-.282.16-.464.225-.183.066-.383.162-.504.395v.001a.702.702 0 00-.077.339c0 .108.016.217.032.322.034.22.068.427.023.567-.144.395-.163.667-.061.865.102.199.31.286.547.335.473.1 1.114.075 1.619.342l.043-.082-.043.082c.54.283 1.089.383 1.526.284a.99.99 0 00.706-.552c.342-.002.717-.146 1.318-.18.408-.032.918.145 1.503.113a.806.806 0 00.068.183l.001.001c.227.455.65.662 1.1.627.45-.036.928-.301 1.315-.762l-.07-.06.07.06c.37-.448.982-.633 1.388-.878.203-.123.368-.276.38-.499.013-.222-.118-.471-.418-.805z"
28
+ d="M13.338 12.033c-.1-.112-.146-.319-.197-.54-.05-.22-.107-.457-.288-.61v-.001a.763.763 0 00-.223-.134c.252-.745.153-1.487-.1-2.157-.312-.823-.855-1.54-1.27-2.03-.464-.586-.918-1.142-.91-1.963.014-1.254.138-3.579-2.068-3.582-.09 0-.183.004-.28.012-2.466.198-1.812 2.803-1.849 3.675-.045.637-.174 1.14-.613 1.764-.515.612-1.24 1.604-1.584 2.637-.162.487-.24.984-.168 1.454-.023.02-.044.041-.064.062-.151.162-.263.358-.388.49-.116.116-.282.16-.464.225-.183.065-.383.162-.504.395v.001a.702.702 0 00-.077.339c0 .108.016.217.032.322.034.22.068.427.023.567-.144.395-.163.667-.061.865.102.198.31.286.547.335.473.099 1.114.075 1.619.342l.043-.082-.043.082c.54.283 1.089.383 1.526.284a.99.99 0 00.706-.552c.342-.002.717-.147 1.318-.18.408-.033.918.145 1.503.113a.803.803 0 00.068.182l.001.002c.227.454.65.662 1.1.627.45-.036.928-.302 1.315-.762l-.07-.06.07.06c.37-.448.982-.633 1.388-.878.203-.123.368-.276.38-.499.013-.222-.118-.472-.418-.805z"
29
29
  />
30
30
  <path
31
31
  fill="#F8BF11"
32
- d="M13.571 12.828c-.007.137-.107.24-.29.35-.368.222-1.019.414-1.434.918-.362.43-.802.665-1.19.696-.387.03-.721-.13-.919-.526v-.002c-.123-.233-.072-.6.031-.987s.251-.785.271-1.108v-.001c.02-.415.044-.776.114-1.055.07-.28.179-.468.373-.575a.876.876 0 01.027-.014c.022.359.2.725.514.804.343.09.838-.204 1.047-.445l.122-.004c.184-.005.337.006.495.143v.001c.121.102.179.296.229.512.05.217.09.453.239.621.287.32.38.534.371.672zM6.592 13.843v.003c-.034.435-.28.672-.656.758-.377.086-.888 0-1.398-.266-.565-.3-1.237-.27-1.667-.36-.216-.045-.357-.113-.421-.238-.064-.126-.066-.345.071-.72v-.001l.001-.002c.068-.209.018-.438-.015-.653-.033-.214-.049-.41.024-.546l.001-.001c.094-.181.232-.246.403-.307.17-.062.373-.11.533-.27l.001-.001h.001c.148-.157.26-.353.39-.492.11-.117.22-.195.385-.196h.005a.61.61 0 01.093.008c.22.033.411.187.596.437l.533.971v.001c.142.296.441.622.695.954.254.333.45.666.425.921z"
32
+ d="M13.571 12.828c-.007.137-.107.24-.29.35-.368.221-1.019.414-1.434.918-.362.43-.802.665-1.19.696-.387.03-.721-.13-.919-.526v-.002c-.123-.233-.072-.6.031-.987.103-.388.251-.786.271-1.109.02-.415.044-.776.114-1.056.07-.279.179-.468.373-.574l.027-.014c.022.359.2.725.514.804.343.09.838-.204 1.047-.445l.122-.005c.184-.004.337.006.495.144.121.103.179.296.229.513.05.217.09.453.239.62v.001c.287.319.38.534.371.672zM6.592 13.843v.003c-.034.435-.28.672-.656.758-.377.086-.888 0-1.398-.266-.565-.3-1.237-.27-1.667-.36-.216-.045-.357-.113-.421-.238-.064-.126-.066-.345.071-.72v-.001l.001-.002c.068-.209.018-.438-.015-.653-.033-.214-.049-.41.024-.546l.001-.001c.094-.181.232-.246.403-.307.17-.062.373-.11.533-.27l.001-.001h.001c.148-.157.26-.353.39-.492.11-.117.22-.195.385-.196h.005a.61.61 0 01.093.008c.22.033.411.187.596.437l.533.971v.001c.142.296.441.622.695.954.254.333.45.666.425.921z"
33
33
  />
34
34
  <path
35
35
  fill="#D6A312"
@@ -37,7 +37,7 @@ export const IconLinuxColor16 = forwardRef<SVGSVGElement, IconProps>(
37
37
  />
38
38
  <path
39
39
  fill="#202020"
40
- d="M8.438 5.26c-.255.133-.552.294-.869.294-.316 0-.566-.146-.745-.289-.09-.07-.163-.142-.218-.193-.096-.075-.084-.181-.045-.178.066.008.076.095.117.134.056.052.126.12.211.187.17.135.397.266.68.266.284 0 .614-.166.816-.28.115-.064.26-.179.379-.266.09-.067.087-.147.162-.138.075.009.02.089-.085.18-.105.092-.27.214-.403.283z"
40
+ d="M8.438 5.26c-.255.133-.552.294-.869.294-.316 0-.566-.146-.745-.289-.09-.07-.163-.142-.218-.193-.096-.075-.084-.181-.045-.178.066.008.076.095.117.133.056.053.126.12.211.188.17.135.397.266.68.266.284 0 .614-.166.816-.28.115-.064.26-.179.379-.266.09-.067.087-.147.162-.138.075.009.02.089-.085.18-.105.092-.27.214-.403.283z"
41
41
  />
42
42
  <path
43
43
  fill="#fff"
@@ -45,11 +45,11 @@ export const IconLinuxColor16 = forwardRef<SVGSVGElement, IconProps>(
45
45
  />
46
46
  <path
47
47
  fill="#E6E6E6"
48
- d="M8.04 8.062c-.556.002-1.099.251-1.558.716-.46.464-.814 1.122-1.018 1.888l.061.038v.004c.47.298.805.598 1.012.878.219.296.316.584.223.834a.513.513 0 01-.27.283l-.041.015c.074.097.146.197.213.3.944.628 2.042.396 2.867-.172.08-.278.153-.536.163-.698.021-.415.042-.792.124-1.12.082-.33.242-.63.544-.795.017-.01.034-.015.051-.023a.756.756 0 01.022-.094c-.242-.622-.591-1.14-1.01-1.5-.42-.36-.897-.551-1.382-.554zm2.37 2.155l-.002.005v-.002l.001-.004z"
48
+ d="M8.04 8.062c-.556.002-1.099.25-1.558.715-.46.465-.814 1.123-1.018 1.89l.061.037v.004c.47.298.805.598 1.012.877.219.297.316.585.223.834a.513.513 0 01-.27.284l-.041.015c.074.097.146.197.213.3.944.628 2.042.396 2.867-.173.08-.277.153-.536.163-.697.021-.416.042-.792.124-1.12.082-.33.242-.63.544-.795.017-.01.034-.015.051-.023a.756.756 0 01.022-.095c-.242-.622-.591-1.139-1.01-1.5-.42-.36-.897-.55-1.382-.553zm2.37 2.154l-.002.005v-.001l.001-.004z"
49
49
  />
50
50
  <path
51
51
  fill="#fff"
52
- d="M9.278 3.833a1.05 1.05 0 01-.215.656 4.119 4.119 0 00-.218-.09l-.127-.045c.029-.035.085-.075.107-.127a.669.669 0 00.05-.243l.001-.01a.673.673 0 00-.035-.236.434.434 0 00-.108-.184.223.223 0 00-.156-.07H8.57a.228.228 0 00-.151.06.434.434 0 00-.122.175.676.676 0 00-.05.243v.01a.718.718 0 00.009.14 1.773 1.773 0 00-.354-.12 1.196 1.196 0 01-.01-.133v-.013a1.035 1.035 0 01.088-.447.793.793 0 01.25-.328.554.554 0 01.346-.123h.006c.125 0 .232.036.342.116a.78.78 0 01.257.324c.063.138.094.273.097.433l.001.012zM7.388 3.997a1.05 1.05 0 00-.277.125.623.623 0 00.002-.15v-.008a.651.651 0 00-.048-.192.37.37 0 00-.096-.141.158.158 0 00-.119-.045c-.042.004-.077.024-.11.065a.372.372 0 00-.07.156.626.626 0 00-.013.205v.008a.634.634 0 00.048.193.367.367 0 00.116.156l-.102.08-.078.056a.706.706 0 01-.16-.24c-.053-.12-.082-.24-.09-.381v-.001a1.071 1.071 0 01.045-.39.668.668 0 01.167-.292.359.359 0 01.264-.118c.084 0 .158.028.235.09a.68.68 0 01.199.271c.053.12.08.24.089.382v.001c.003.06.003.115-.002.17z"
52
+ d="M9.278 3.833a1.05 1.05 0 01-.215.656 4.119 4.119 0 00-.218-.09c-.049-.019-.087-.031-.127-.045.029-.035.085-.075.107-.127a.67.67 0 00.05-.243l.001-.01a.673.673 0 00-.035-.236.434.434 0 00-.108-.184.223.223 0 00-.156-.07H8.57a.228.228 0 00-.151.06.433.433 0 00-.122.175.676.676 0 00-.05.243v.01a.718.718 0 00.009.14 1.773 1.773 0 00-.354-.12 1.196 1.196 0 01-.01-.133v-.013a1.035 1.035 0 01.088-.447.793.793 0 01.25-.329.554.554 0 01.346-.122h.006c.125 0 .232.036.342.116a.78.78 0 01.257.324 1.042 1.042 0 01.098.445zM7.388 3.997a1.05 1.05 0 00-.277.125.623.623 0 00.002-.15v-.008a.651.651 0 00-.048-.192.37.37 0 00-.096-.141.157.157 0 00-.119-.045c-.042.004-.077.024-.11.065a.372.372 0 00-.07.155.626.626 0 00-.013.206v.008a.634.634 0 00.048.192.367.367 0 00.116.157l-.102.079-.078.057a.706.706 0 01-.16-.24c-.053-.12-.082-.24-.09-.381v-.001a1.071 1.071 0 01.045-.39.668.668 0 01.167-.292.359.359 0 01.264-.118c.084 0 .158.028.235.09a.68.68 0 01.199.271c.053.12.08.24.089.382.003.06.003.116-.002.17z"
53
53
  />
54
54
  <path
55
55
  fill="#202020"
@@ -33,7 +33,7 @@ export const IconLinuxColor24 = forwardRef<SVGSVGElement, IconProps>(
33
33
  />
34
34
  <path
35
35
  fill="#D6A312"
36
- d="M13.785 7.411c-.06-.12-.186-.233-.398-.32l-.001-.001c-.442-.19-.634-.203-.881-.363-.402-.258-.734-.349-1.01-.348-.144 0-.273.026-.388.066-.336.116-.56.357-.7.49-.027.026-.063.05-.148.113-.086.063-.216.158-.402.297-.165.124-.219.285-.162.475.057.189.24.407.573.595l.001.001c.207.122.349.286.511.416.081.065.167.123.27.167.102.044.222.074.372.083.353.02.612-.086.842-.217.23-.13.424-.29.647-.363.458-.143.784-.431.886-.704a.463.463 0 00-.012-.387z"
36
+ d="M13.785 7.412c-.06-.12-.186-.234-.398-.321h-.001c-.442-.19-.634-.204-.881-.364-.402-.258-.734-.349-1.01-.348-.144 0-.273.026-.388.066-.336.116-.56.357-.7.49-.027.026-.063.05-.148.113-.086.063-.216.158-.402.297-.165.124-.219.286-.162.475.057.189.24.407.573.595l.001.001c.207.122.349.286.511.416.081.065.167.123.27.167.102.044.222.074.372.083.353.02.612-.085.842-.217.23-.13.424-.29.647-.363.458-.143.784-.431.886-.704a.463.463 0 00-.012-.386z"
37
37
  />
38
38
  <path
39
39
  fill="#202020"
@@ -0,0 +1,36 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconLoadingStatic16 = forwardRef<SVGSVGElement, IconProps>(
5
+ ({ color = 'currentColor', title, ...props }, svgRef) => {
6
+ const titleId = useMemo(
7
+ () =>
8
+ title
9
+ ? 'title-' + Math.random().toString(36).substr(2, 9)
10
+ : undefined,
11
+ [title]
12
+ );
13
+ return (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ width={16}
17
+ height={16}
18
+ fill="none"
19
+ viewBox="0 0 16 16"
20
+ aria-hidden={!title}
21
+ ref={svgRef}
22
+ aria-labelledby={titleId}
23
+ {...props}
24
+ >
25
+ {title ? <title id={titleId}>{title}</title> : null}
26
+ <g fill={color} fillRule="evenodd" clipRule="evenodd">
27
+ <path
28
+ d="M8 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zM0 8a8 8 0 1116 0A8 8 0 010 8z"
29
+ opacity={0.2}
30
+ />
31
+ <path d="M7.25.75A.75.75 0 018 0a8 8 0 018 8 .75.75 0 01-1.5 0A6.5 6.5 0 008 1.5a.75.75 0 01-.75-.75z" />
32
+ </g>
33
+ </svg>
34
+ );
35
+ }
36
+ );
@@ -0,0 +1,36 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconLoadingStatic24 = forwardRef<SVGSVGElement, IconProps>(
5
+ ({ color = 'currentColor', title, ...props }, svgRef) => {
6
+ const titleId = useMemo(
7
+ () =>
8
+ title
9
+ ? 'title-' + Math.random().toString(36).substr(2, 9)
10
+ : undefined,
11
+ [title]
12
+ );
13
+ return (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ width={24}
17
+ height={24}
18
+ fill="none"
19
+ viewBox="0 0 24 24"
20
+ aria-hidden={!title}
21
+ ref={svgRef}
22
+ aria-labelledby={titleId}
23
+ {...props}
24
+ >
25
+ {title ? <title id={titleId}>{title}</title> : null}
26
+ <g fill={color} fillRule="evenodd" clipRule="evenodd">
27
+ <path
28
+ d="M12 2.5a9.5 9.5 0 100 19 9.5 9.5 0 000-19zM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12z"
29
+ opacity={0.2}
30
+ />
31
+ <path d="M11.25 1.75A.75.75 0 0112 1c6.075 0 11 4.925 11 11a.75.75 0 01-1.5 0A9.5 9.5 0 0012 2.5a.75.75 0 01-.75-.75z" />
32
+ </g>
33
+ </svg>
34
+ );
35
+ }
36
+ );
@@ -0,0 +1,36 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconRunningStatic16 = forwardRef<SVGSVGElement, IconProps>(
5
+ ({ color = 'currentColor', title, ...props }, svgRef) => {
6
+ const titleId = useMemo(
7
+ () =>
8
+ title
9
+ ? 'title-' + Math.random().toString(36).substr(2, 9)
10
+ : undefined,
11
+ [title]
12
+ );
13
+ return (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ width={16}
17
+ height={16}
18
+ fill="none"
19
+ viewBox="0 0 16 16"
20
+ aria-hidden={!title}
21
+ ref={svgRef}
22
+ aria-labelledby={titleId}
23
+ {...props}
24
+ >
25
+ {title ? <title id={titleId}>{title}</title> : null}
26
+ <g fill={color} fillRule="evenodd" clipRule="evenodd">
27
+ <path d="M8 1.5a6.48 6.48 0 00-4.707 2.017.75.75 0 11-1.086-1.034A7.98 7.98 0 018 0a7.98 7.98 0 015.793 2.483.75.75 0 11-1.086 1.034A6.48 6.48 0 008 1.5zM1.236 5.279a.75.75 0 01.514.927 6.503 6.503 0 004.727 8.115.75.75 0 11-.349 1.459 8.003 8.003 0 01-5.82-9.986.75.75 0 01.928-.515zm13.528 0a.75.75 0 01.928.515 8.003 8.003 0 01-5.82 9.986.75.75 0 01-.35-1.459 6.503 6.503 0 004.728-8.115.75.75 0 01.514-.927z" />
28
+ <path
29
+ d="M8 4.5a3.5 3.5 0 100 7 3.5 3.5 0 000-7zM3 8a5 5 0 1110 0A5 5 0 013 8z"
30
+ opacity={0.2}
31
+ />
32
+ </g>
33
+ </svg>
34
+ );
35
+ }
36
+ );
@@ -0,0 +1,36 @@
1
+ import { forwardRef, useMemo } from 'react';
2
+ import { IconProps } from './types';
3
+
4
+ export const IconRunningStatic24 = forwardRef<SVGSVGElement, IconProps>(
5
+ ({ color = 'currentColor', title, ...props }, svgRef) => {
6
+ const titleId = useMemo(
7
+ () =>
8
+ title
9
+ ? 'title-' + Math.random().toString(36).substr(2, 9)
10
+ : undefined,
11
+ [title]
12
+ );
13
+ return (
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ width={24}
17
+ height={24}
18
+ fill="none"
19
+ viewBox="0 0 24 24"
20
+ aria-hidden={!title}
21
+ ref={svgRef}
22
+ aria-labelledby={titleId}
23
+ {...props}
24
+ >
25
+ {title ? <title id={titleId}>{title}</title> : null}
26
+ <g fill={color} fillRule="evenodd" clipRule="evenodd">
27
+ <path d="M12 2.5a9.47 9.47 0 00-6.88 2.948.75.75 0 01-1.085-1.034A10.97 10.97 0 0112 1a10.97 10.97 0 017.965 3.414.75.75 0 11-1.086 1.034A9.47 9.47 0 0012 2.5zM2.351 8.451a.75.75 0 01.515.928A9.506 9.506 0 002.5 12c0 4.48 3.102 8.237 7.276 9.238a.75.75 0 01-.35 1.459C4.593 21.537 1 17.189 1 12c0-1.051.148-2.07.424-3.034a.75.75 0 01.927-.515zm19.297 0a.75.75 0 01.928.515C22.852 9.93 23 10.949 23 12c0 5.19-3.593 9.538-8.426 10.697a.75.75 0 11-.35-1.459c4.174-1 7.276-4.758 7.276-9.238 0-.91-.128-1.79-.366-2.621a.75.75 0 01.514-.928z" />
28
+ <path
29
+ d="M12 5.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zM4 12a8 8 0 1116 0 8 8 0 01-16 0z"
30
+ opacity={0.2}
31
+ />
32
+ </g>
33
+ </svg>
34
+ );
35
+ }
36
+ );