@leafygreen-ui/icon 11.6.1 → 11.7.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 (84) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +7 -7
  3. package/dist/Clock.js +2 -0
  4. package/dist/Clock.js.map +1 -0
  5. package/dist/ClockWithArrow.js +2 -0
  6. package/dist/ClockWithArrow.js.map +1 -0
  7. package/dist/Key.js +2 -0
  8. package/dist/Key.js.map +1 -0
  9. package/dist/Note.js +2 -0
  10. package/dist/Note.js.map +1 -0
  11. package/dist/Redo.js +2 -0
  12. package/dist/Redo.js.map +1 -0
  13. package/dist/ReplicaSet.js +2 -0
  14. package/dist/ReplicaSet.js.map +1 -0
  15. package/dist/Serverless.js +2 -0
  16. package/dist/Serverless.js.map +1 -0
  17. package/dist/ShardedCluster.js +2 -0
  18. package/dist/ShardedCluster.js.map +1 -0
  19. package/dist/Undo.js +2 -0
  20. package/dist/Undo.js.map +1 -0
  21. package/dist/esm/Clock.js +2 -0
  22. package/dist/esm/Clock.js.map +1 -0
  23. package/dist/esm/ClockWithArrow.js +2 -0
  24. package/dist/esm/ClockWithArrow.js.map +1 -0
  25. package/dist/esm/Key.js +2 -0
  26. package/dist/esm/Key.js.map +1 -0
  27. package/dist/esm/Note.js +2 -0
  28. package/dist/esm/Note.js.map +1 -0
  29. package/dist/esm/Redo.js +2 -0
  30. package/dist/esm/Redo.js.map +1 -0
  31. package/dist/esm/ReplicaSet.js +2 -0
  32. package/dist/esm/ReplicaSet.js.map +1 -0
  33. package/dist/esm/Serverless.js +2 -0
  34. package/dist/esm/Serverless.js.map +1 -0
  35. package/dist/esm/ShardedCluster.js +2 -0
  36. package/dist/esm/ShardedCluster.js.map +1 -0
  37. package/dist/esm/Undo.js +2 -0
  38. package/dist/esm/Undo.js.map +1 -0
  39. package/dist/esm/index.js +1 -1
  40. package/dist/esm/index.js.map +1 -1
  41. package/dist/generated/Clock.d.ts +23 -0
  42. package/dist/generated/Clock.d.ts.map +1 -0
  43. package/dist/generated/ClockWithArrow.d.ts +23 -0
  44. package/dist/generated/ClockWithArrow.d.ts.map +1 -0
  45. package/dist/generated/Key.d.ts +23 -0
  46. package/dist/generated/Key.d.ts.map +1 -0
  47. package/dist/generated/Note.d.ts +23 -0
  48. package/dist/generated/Note.d.ts.map +1 -0
  49. package/dist/generated/Redo.d.ts +23 -0
  50. package/dist/generated/Redo.d.ts.map +1 -0
  51. package/dist/generated/ReplicaSet.d.ts +23 -0
  52. package/dist/generated/ReplicaSet.d.ts.map +1 -0
  53. package/dist/generated/Serverless.d.ts +23 -0
  54. package/dist/generated/Serverless.d.ts.map +1 -0
  55. package/dist/generated/ShardedCluster.d.ts +23 -0
  56. package/dist/generated/ShardedCluster.d.ts.map +1 -0
  57. package/dist/generated/Undo.d.ts +23 -0
  58. package/dist/generated/Undo.d.ts.map +1 -0
  59. package/dist/glyphs/index.d.ts +1 -1
  60. package/dist/glyphs/index.d.ts.map +1 -1
  61. package/dist/index.js +1 -1
  62. package/dist/index.js.map +1 -1
  63. package/package.json +1 -1
  64. package/src/Icon.story.tsx +2 -1
  65. package/src/generated/Clock.tsx +68 -0
  66. package/src/generated/ClockWithArrow.tsx +70 -0
  67. package/src/generated/Key.tsx +68 -0
  68. package/src/generated/Note.tsx +76 -0
  69. package/src/generated/Redo.tsx +66 -0
  70. package/src/generated/ReplicaSet.tsx +68 -0
  71. package/src/generated/Serverless.tsx +66 -0
  72. package/src/generated/ShardedCluster.tsx +68 -0
  73. package/src/generated/Undo.tsx +66 -0
  74. package/src/glyphs/Clock.svg +3 -0
  75. package/src/glyphs/ClockWithArrow.svg +4 -0
  76. package/src/glyphs/Key.svg +3 -0
  77. package/src/glyphs/Note.svg +5 -0
  78. package/src/glyphs/Redo.svg +3 -0
  79. package/src/glyphs/ReplicaSet.svg +3 -0
  80. package/src/glyphs/Serverless.svg +3 -0
  81. package/src/glyphs/ShardedCluster.svg +3 -0
  82. package/src/glyphs/Undo.svg +3 -0
  83. package/src/glyphs/index.ts +20 -2
  84. package/tsconfig.tsbuildinfo +170 -8
@@ -0,0 +1,66 @@
1
+ /**
2
+ * This is a generated file. Do not modify it manually.
3
+ *
4
+ * @script ./node_modules/.bin/ts-node packages/icon/scripts/build.ts
5
+ * @checksum 7132dba4fb876fafeaa02077d7f599f0
6
+ */
7
+ import * as React from 'react';
8
+ import PropTypes from 'prop-types';
9
+ import { css, cx } from '@leafygreen-ui/emotion';
10
+ import { generateAccessibleProps, sizeMap } from '../glyphCommon';
11
+ import { LGGlyph } from '../types';
12
+ export interface UndoProps extends LGGlyph.ComponentProps {}
13
+
14
+ const Undo = ({
15
+ className,
16
+ size = 16,
17
+ title,
18
+ ['aria-label']: ariaLabel,
19
+ ['aria-labelledby']: ariaLabelledby,
20
+ fill,
21
+ role = 'img',
22
+ ...props
23
+ }: UndoProps) => {
24
+ const fillStyle = css`
25
+ color: ${fill};
26
+ `;
27
+ const noFlexShrink = css`
28
+ flex-shrink: 0;
29
+ `;
30
+ const accessibleProps = generateAccessibleProps(role, 'Undo', {
31
+ title,
32
+ ['aria-label']: ariaLabel,
33
+ ['aria-labelledby']: ariaLabelledby,
34
+ });
35
+ return (
36
+ <svg
37
+ className={cx(
38
+ {
39
+ [fillStyle]: fill != null,
40
+ },
41
+ noFlexShrink,
42
+ className,
43
+ )}
44
+ height={typeof size === 'number' ? size : sizeMap[size]}
45
+ width={typeof size === 'number' ? size : sizeMap[size]}
46
+ role={role}
47
+ {...accessibleProps}
48
+ {...props}
49
+ viewBox="0 0 16 16"
50
+ >
51
+ <path
52
+ d="M11.9812 9.40216C12.0303 9.72987 12.2942 10 12.6256 10H13.4256C13.757 10 14.0288 9.73064 13.9961 9.40089C13.8186 7.6104 12.8539 6.05139 11.4531 5.07473C10.9741 4.73549 10.4315 4.46519 9.844 4.28051C9.27044 4.09832 8.6595 4.00002 8.0256 4.00002C8.01612 3.99998 8.00663 4.00002 7.99714 4.00002C5.29819 4.00002 3.04689 5.71778 2.52999 8.00002H1.11567C0.574518 8.00002 0.323974 8.67204 0.733046 9.02631L3.21469 11.1755C3.43432 11.3657 3.76031 11.3657 3.97994 11.1755L6.46159 9.02631C6.87066 8.67204 6.62011 8.00002 6.07896 8.00002H4.63233C5.10106 6.91458 6.31283 6.00002 7.99714 6.00002C8.18375 6.00002 8.36456 6.01124 8.5392 6.03269C9.24477 6.12312 9.89283 6.39739 10.4338 6.80592C10.4522 6.8206 10.4704 6.83543 10.4885 6.85041C10.5052 6.86432 10.5225 6.87728 10.5404 6.88926C11.2999 7.50399 11.8297 8.39119 11.9812 9.40216Z"
53
+ fill={'currentColor'}
54
+ />
55
+ </svg>
56
+ );
57
+ };
58
+
59
+ Undo.displayName = 'Undo';
60
+ Undo.isGlyph = true;
61
+ Undo.propTypes = {
62
+ fill: PropTypes.string,
63
+ size: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
64
+ className: PropTypes.string,
65
+ };
66
+ export default Undo;
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8 14C11.3137 14 14 11.3137 14 8C14 4.68629 11.3137 2 8 2C4.68629 2 2 4.68629 2 8C2 11.3137 4.68629 14 8 14ZM7.25 4.75C7.25 4.33579 7.58579 4 8 4C8.41421 4 8.75 4.33579 8.75 4.75V7.90966L10.4939 9.43556C10.8056 9.70832 10.8372 10.1821 10.5644 10.4939C10.2917 10.8056 9.81786 10.8372 9.50613 10.5644L7.51059 8.81833C7.5014 8.8104 7.4924 8.80226 7.48361 8.79391C7.41388 8.7278 7.35953 8.65117 7.32087 8.56867C7.27541 8.47195 7.25 8.36394 7.25 8.25V4.75Z" fill="#000000"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13 8C13 10.7614 10.7614 13 8 13C7.16895 13 6.38526 12.7973 5.69568 12.4385C5.34783 12.2576 4.90944 12.3087 4.65841 12.6099L4.32712 13.0075C4.05174 13.3379 4.1087 13.8355 4.48034 14.0521C5.51438 14.6548 6.71687 15 8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C6.05606 1 4.2972 1.7924 3.02879 3.07181L1.96954 2.14618C1.56206 1.7901 0.931193 2.13127 1.00611 2.66721L1.4606 5.9185C1.50083 6.20624 1.7463 6.4287 2.03684 6.43H5.31972C5.86086 6.43241 6.1144 5.76821 5.70691 5.41212L4.53896 4.3915C5.4373 3.52965 6.65679 3 8 3C10.7614 3 13 5.23858 13 8Z" fill="#000000"/>
3
+ <path d="M7.25 5.25C7.25 4.83579 7.58579 4.5 8 4.5C8.41421 4.5 8.75 4.83579 8.75 5.25V7.91793L10.4294 9.44169C10.7412 9.71445 10.7728 10.1883 10.5 10.5C10.2272 10.8117 9.75342 10.8433 9.44169 10.5706L7.50697 8.81519C7.49904 8.80826 7.49125 8.80117 7.48361 8.79391C7.41388 8.72781 7.35954 8.65118 7.32088 8.56868C7.27541 8.47196 7.25 8.36395 7.25 8.25V5.25Z" fill="#000000"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6 10C6.55427 10 7.08222 9.88726 7.56215 9.68347L8.87868 11L8.43934 11.4393C7.85355 12.0251 7.85355 12.9749 8.43934 13.5607C9.02513 14.1464 9.97487 14.1464 10.5607 13.5607L11 13.1213L11.4393 13.5607C12.0251 14.1464 12.9749 14.1464 13.5607 13.5607C14.1464 12.9749 14.1464 12.0251 13.5607 11.4393L9.68347 7.56215C9.88726 7.08222 10 6.55427 10 6C10 3.79086 8.20914 2 6 2C3.79086 2 2 3.79086 2 6C2 8.20914 3.79086 10 6 10ZM5.25 6.5C5.94036 6.5 6.5 5.94036 6.5 5.25C6.5 4.55964 5.94036 4 5.25 4C4.55964 4 4 4.55964 4 5.25C4 5.94036 4.55964 6.5 5.25 6.5Z" fill="#000000"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.5 6.25C4.5 5.83579 4.83579 5.5 5.25 5.5H8.75C9.16421 5.5 9.5 5.83579 9.5 6.25C9.5 6.66421 9.16421 7 8.75 7H5.25C4.83579 7 4.5 6.66421 4.5 6.25Z" fill="#000000"/>
3
+ <path d="M4.5 8.75C4.5 8.33579 4.83579 8 5.25 8H6.75C7.16421 8 7.5 8.33579 7.5 8.75C7.5 9.16421 7.16421 9.5 6.75 9.5H5.25C4.83579 9.5 4.5 9.16421 4.5 8.75Z" fill="#000000"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15 10L11 14H3C1.89543 14 1 13.1046 1 12V4C1 2.89543 1.89543 2 3 2H13C14.1046 2 15 2.89543 15 4V10ZM13 4H3L3 12H10V10C10 9.44772 10.4477 9 11 9H13V4Z" fill="#000000"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.01756 9.40216C3.96845 9.72987 3.70455 10 3.37318 10H2.57318C2.24181 10 1.97003 9.73064 2.00272 9.40089C2.18023 7.6104 3.14483 6.05139 4.54567 5.07473C5.02468 4.73549 5.56726 4.46519 6.15478 4.28051C6.72834 4.09832 7.33928 4.00002 7.97318 4.00002C7.98266 3.99998 7.99215 4.00002 8.00164 4.00002C10.7006 4.00002 12.9519 5.71778 13.4688 8.00002H14.8831C15.4243 8.00002 15.6748 8.67204 15.2657 9.02631L12.7841 11.1755C12.5645 11.3657 12.2385 11.3657 12.0188 11.1755L9.53719 9.02631C9.12812 8.67204 9.37866 8.00002 9.91982 8.00002H11.3664C10.8977 6.91458 9.68595 6.00002 8.00164 6.00002C7.81503 6.00002 7.63422 6.01124 7.45958 6.03269C6.75401 6.12312 6.10595 6.39739 5.56496 6.80592C5.54654 6.8206 5.52833 6.83543 5.51032 6.85041C5.4936 6.86432 5.47625 6.87728 5.45838 6.88926C4.69892 7.50399 4.16907 8.39119 4.01756 9.40216Z" fill="#000000"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.39072 7.71281C8.96444 7.89758 8.49418 8 8 8C7.50582 8 7.03556 7.89758 6.60928 7.71281L5.26491 9.72938C5.719 10.182 6 10.8082 6 11.5C6 12.8807 4.88071 14 3.5 14C2.11929 14 1 12.8807 1 11.5C1 10.1193 2.11929 9 3.5 9C3.73768 9 3.96761 9.03317 4.18543 9.09513L5.56972 7.01868C4.91019 6.38216 4.5 5.48898 4.5 4.5C4.5 2.567 6.067 1 8 1C9.933 1 11.5 2.567 11.5 4.5C11.5 5.48898 11.0898 6.38216 10.4303 7.01868L11.8146 9.09513C12.0324 9.03317 12.2623 9 12.5 9C13.8807 9 15 10.1193 15 11.5C15 12.8807 13.8807 14 12.5 14C11.1193 14 10 12.8807 10 11.5C10 10.8082 10.281 10.182 10.7351 9.72938L9.39072 7.71281ZM9.75 4.5C9.75 5.4665 8.9665 6.25 8 6.25C7.0335 6.25 6.25 5.4665 6.25 4.5C6.25 3.5335 7.0335 2.75 8 2.75C8.9665 2.75 9.75 3.5335 9.75 4.5Z" fill="#000000"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2.13223 10.8487C0.834955 9.84256 0 8.26878 0 6.5C0 3.46243 2.46243 1 5.5 1C7.74673 1 9.67881 2.34714 10.5326 4.27774C10.9869 4.09848 11.482 4 12 4C14.2091 4 16 5.79086 16 8C16 9.05152 15.5943 10.0083 14.9308 10.7222C14.8896 10.7907 14.8395 10.8552 14.7805 10.9142L13.0092 12.8124C12.6426 13.2337 12.1024 13.5 11.5 13.5L7.79198 13.5C7.4062 14.383 6.52516 15 5.5 15C4.11929 15 3 13.8807 3 12.5C3 12.1448 3.07407 11.8069 3.2076 11.501C3.59316 10.6175 4.47447 10 5.5 10C6.52515 10 7.40619 10.617 7.79197 11.5L11.5 11.5L12.6664 10.25L8.49996 10.25C7.81664 9.34027 6.72814 8.75 5.5 8.75C4.02153 8.75 2.7429 9.6056 2.13223 10.8487Z" fill="#000000"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13 2.75C13 3.7165 12.2165 4.5 11.25 4.5C11.1218 4.5 10.9969 4.48622 10.8766 4.46007L10.2582 5.32584C10.8666 5.84015 11.2971 6.55834 11.4444 7.375H12.6149C12.8665 6.71716 13.5037 6.25 14.25 6.25C15.2165 6.25 16 7.0335 16 8C16 8.9665 15.2165 9.75 14.25 9.75C13.5037 9.75 12.8665 9.28284 12.6149 8.625H11.4444C11.2971 9.44165 10.8666 10.1598 10.2582 10.6741L10.8766 11.5399C10.9969 11.5138 11.1219 11.5 11.25 11.5C12.2165 11.5 13 12.2835 13 13.25C13 14.2165 12.2165 15 11.25 15C10.2835 15 9.5 14.2165 9.5 13.25C9.5 12.8677 9.6226 12.514 9.83062 12.2261L9.1691 11.3C8.8035 11.4295 8.40998 11.5 8 11.5C7.59258 11.5 7.20142 11.4304 6.83777 11.3024L6.17369 12.2321C6.3791 12.5189 6.5 12.8703 6.5 13.25C6.5 14.2165 5.7165 15 4.75 15C3.7835 15 3 14.2165 3 13.25C3 12.2835 3.7835 11.5 4.75 11.5C4.88079 11.5 5.00822 11.5143 5.13082 11.5416L5.74716 10.6787C5.13591 10.1641 4.70329 9.44405 4.55564 8.625H3.38509C3.13349 9.28284 2.4963 9.75 1.75 9.75C0.783502 9.75 0 8.9665 0 8C0 7.0335 0.783502 6.25 1.75 6.25C2.4963 6.25 3.13349 6.71716 3.38509 7.375H4.55564C4.70329 6.55595 5.13591 5.83594 5.74716 5.32133L5.13082 4.45845C5.00822 4.48565 4.88079 4.5 4.75 4.5C3.7835 4.5 3 3.7165 3 2.75C3 1.7835 3.7835 1 4.75 1C5.7165 1 6.5 1.7835 6.5 2.75C6.5 3.12967 6.3791 3.48109 6.17369 3.76788L6.83777 4.69759C7.20142 4.56961 7.59258 4.5 8 4.5C8.40998 4.5 8.80349 4.57049 9.16908 4.70001L9.83061 3.77386C9.62259 3.48598 9.5 3.13231 9.5 2.75C9.5 1.7835 10.2835 1 11.25 1C12.2165 1 13 1.7835 13 2.75ZM9.75 8C9.75 8.9665 8.9665 9.75 8 9.75C7.0335 9.75 6.25 8.9665 6.25 8C6.25 7.0335 7.0335 6.25 8 6.25C8.9665 6.25 9.75 7.0335 9.75 8Z" fill="#000000"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.9812 9.40216C12.0303 9.72987 12.2942 10 12.6256 10H13.4256C13.757 10 14.0288 9.73064 13.9961 9.40089C13.8186 7.6104 12.8539 6.05139 11.4531 5.07473C10.9741 4.73549 10.4315 4.46519 9.844 4.28051C9.27044 4.09832 8.6595 4.00002 8.0256 4.00002C8.01612 3.99998 8.00663 4.00002 7.99714 4.00002C5.29819 4.00002 3.04689 5.71778 2.52999 8.00002H1.11567C0.574518 8.00002 0.323974 8.67204 0.733046 9.02631L3.21469 11.1755C3.43432 11.3657 3.76031 11.3657 3.97994 11.1755L6.46159 9.02631C6.87066 8.67204 6.62011 8.00002 6.07896 8.00002H4.63233C5.10106 6.91458 6.31283 6.00002 7.99714 6.00002C8.18375 6.00002 8.36456 6.01124 8.5392 6.03269C9.24477 6.12312 9.89283 6.39739 10.4338 6.80592C10.4522 6.8206 10.4704 6.83543 10.4885 6.85041C10.5052 6.86432 10.5225 6.87728 10.5404 6.88926C11.2999 7.50399 11.8297 8.39119 11.9812 9.40216Z" fill="#000000"/>
3
+ </svg>
@@ -22,10 +22,12 @@ import CaretUp from './CaretUp.svg';
22
22
  import Charts from './Charts.svg';
23
23
  import Checkmark from './Checkmark.svg';
24
24
  import CheckmarkWithCircle from './CheckmarkWithCircle.svg';
25
- import ChevronUp from './ChevronUp.svg';
26
25
  import ChevronDown from './ChevronDown.svg';
27
- import ChevronRight from './ChevronRight.svg';
28
26
  import ChevronLeft from './ChevronLeft.svg';
27
+ import ChevronRight from './ChevronRight.svg';
28
+ import ChevronUp from './ChevronUp.svg';
29
+ import Clock from './Clock.svg';
30
+ import ClockWithArrow from './ClockWithArrow.svg';
29
31
  import Clone from './Clone.svg';
30
32
  import Cloud from './Cloud.svg';
31
33
  import Code from './Code.svg';
@@ -52,6 +54,7 @@ import Home from './Home.svg';
52
54
  import ImportantWithCircle from './ImportantWithCircle.svg';
53
55
  import InfoWithCircle from './InfoWithCircle.svg';
54
56
  import InviteUser from './InviteUser.svg';
57
+ import Key from './Key.svg';
55
58
  import Laptop from './Laptop.svg';
56
59
  import Lock from './Lock.svg';
57
60
  import MagnifyingGlass from './MagnifyingGlass.svg';
@@ -59,6 +62,7 @@ import Megaphone from './Megaphone.svg';
59
62
  import Menu from './Menu.svg';
60
63
  import Minus from './Minus.svg';
61
64
  import NotAllowed from './NotAllowed.svg';
65
+ import Note from './Note.svg';
62
66
  import OpenNewTab from './OpenNewTab.svg';
63
67
  import Pause from './Pause.svg';
64
68
  import Person from './Person.svg';
@@ -68,8 +72,12 @@ import Play from './Play.svg';
68
72
  import Plus from './Plus.svg';
69
73
  import PlusWithCircle from './PlusWithCircle.svg';
70
74
  import QuestionMarkWithCircle from './QuestionMarkWithCircle.svg';
75
+ import Redo from './Redo.svg';
71
76
  import Refresh from './Refresh.svg';
77
+ import ReplicaSet from './ReplicaSet.svg';
72
78
  import Save from './Save.svg';
79
+ import Serverless from './Serverless.svg';
80
+ import ShardedCluster from './ShardedCluster.svg';
73
81
  import Settings from './Settings.svg';
74
82
  import Shell from './Shell.svg';
75
83
  import SortAscending from './SortAscending.svg';
@@ -79,6 +87,7 @@ import Support from './Support.svg';
79
87
  import Table from './Table.svg';
80
88
  import TimeSeries from './TimeSeries.svg';
81
89
  import Trash from './Trash.svg';
90
+ import Undo from './Undo.svg';
82
91
  import University from './University.svg';
83
92
  import Unlock from './Unlock.svg';
84
93
  import Unsorted from './Unsorted.svg';
@@ -116,6 +125,8 @@ const glyphs = {
116
125
  ChevronLeft,
117
126
  ChevronRight,
118
127
  ChevronUp,
128
+ Clock,
129
+ ClockWithArrow,
119
130
  Clone,
120
131
  Cloud,
121
132
  Code,
@@ -142,6 +153,7 @@ const glyphs = {
142
153
  ImportantWithCircle,
143
154
  InfoWithCircle,
144
155
  InviteUser,
156
+ Key,
145
157
  Laptop,
146
158
  Lock,
147
159
  MagnifyingGlass,
@@ -149,6 +161,7 @@ const glyphs = {
149
161
  Menu,
150
162
  Minus,
151
163
  NotAllowed,
164
+ Note,
152
165
  OpenNewTab,
153
166
  Pause,
154
167
  Person,
@@ -158,8 +171,12 @@ const glyphs = {
158
171
  Plus,
159
172
  PlusWithCircle,
160
173
  QuestionMarkWithCircle,
174
+ Redo,
161
175
  Refresh,
176
+ ReplicaSet,
162
177
  Save,
178
+ Serverless,
179
+ ShardedCluster,
163
180
  Settings,
164
181
  Shell,
165
182
  SortAscending,
@@ -169,6 +186,7 @@ const glyphs = {
169
186
  Table,
170
187
  TimeSeries,
171
188
  Trash,
189
+ Undo,
172
190
  University,
173
191
  Unlock,
174
192
  Unsorted,
@@ -162,13 +162,13 @@
162
162
  "affectsGlobalScope": true
163
163
  },
164
164
  "../../node_modules/csstype/index.d.ts": {
165
- "version": "ea58e4cbcf3d760a15f9300978a360c46360f544b355c737b60c733a385b8858",
166
- "signature": "ea58e4cbcf3d760a15f9300978a360c46360f544b355c737b60c733a385b8858",
165
+ "version": "5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df",
166
+ "signature": "5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df",
167
167
  "affectsGlobalScope": false
168
168
  },
169
169
  "../../node_modules/@types/prop-types/index.d.ts": {
170
- "version": "a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad",
171
- "signature": "a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad",
170
+ "version": "f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380",
171
+ "signature": "f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380",
172
172
  "affectsGlobalScope": false
173
173
  },
174
174
  "../../node_modules/@types/react/index.d.ts": {
@@ -472,8 +472,8 @@
472
472
  "affectsGlobalScope": false
473
473
  },
474
474
  "./src/glyphs/index.ts": {
475
- "version": "b5874d152a959a28abccd9b6028fd4ce940d95cab9afc1a01243edd52ef7b935",
476
- "signature": "5aca218c8db7111f38f99348b1b9609bb75e1b52b242f8c71133d701614d4c1a",
475
+ "version": "7bbab1ce2755283dc1e650e99c3e375490dabde2edeaaa7197b8f598230c4b43",
476
+ "signature": "bab5151666ad8868eaac36db589d576ac79a627147fcee4181c5dd832624dc3a",
477
477
  "affectsGlobalScope": false
478
478
  },
479
479
  "./src/isComponentGlyph.ts": {
@@ -616,6 +616,16 @@
616
616
  "signature": "5f6dd6d845fdd17b3e78b204a39b01adccf5d98f0fd5a3d1e1c9ab7a75425427",
617
617
  "affectsGlobalScope": false
618
618
  },
619
+ "./src/generated/Clock.tsx": {
620
+ "version": "9c18351fbca47699f9806b0a3ad1f78ed778e4f748bb0ef2d903105ce410f788",
621
+ "signature": "1dd81fd8b45d888738299a1fd8347b78a48bd120022e616fe38e3ef061573cb5",
622
+ "affectsGlobalScope": false
623
+ },
624
+ "./src/generated/ClockWithArrow.tsx": {
625
+ "version": "531db48fd4994a05cd5428fa8d26ea6c7fbd7424248d1b16f7f886d988321125",
626
+ "signature": "7ebaec969342a7e810e706f0dbdd8e1ba58bbcda720532280756e1f5d930a0f2",
627
+ "affectsGlobalScope": false
628
+ },
619
629
  "./src/generated/Clone.tsx": {
620
630
  "version": "50f0fc8c74a151026638d11b889c39da60f07121e75da36a78fd14c9f6797492",
621
631
  "signature": "ce5da6496e35d7c69157322c4e3af165326388106fd438de27a4bf663f060d0f",
@@ -746,6 +756,11 @@
746
756
  "signature": "a1b273f9ebcf5bf7790ed47d8de20a112205bc84a43b84d49bfb603315357bd1",
747
757
  "affectsGlobalScope": false
748
758
  },
759
+ "./src/generated/Key.tsx": {
760
+ "version": "73c17165257d7a389f06dcb0fe4cb09273f1939683a8308b58302b6c8bc4bc7a",
761
+ "signature": "ebbad4fbccb424a992d7ca1f1aa8f792307529fd975b68374e53ea6f013c5a6d",
762
+ "affectsGlobalScope": false
763
+ },
749
764
  "./src/generated/Laptop.tsx": {
750
765
  "version": "89b989072a794d2bccb2e95861f6429244d8fb960dea712908ca35792387141d",
751
766
  "signature": "40f4082a17339a5a45a157c5ae97ba23ea7078d2d316d8f9f0b373fa977b8f6c",
@@ -781,6 +796,11 @@
781
796
  "signature": "1753081658521be6748b9dc290a7d4d5bfbebba1717426a82e9c79732a53639d",
782
797
  "affectsGlobalScope": false
783
798
  },
799
+ "./src/generated/Note.tsx": {
800
+ "version": "f43c6295e38ba9a61b4949618b5fe5d5dd66de3859ad9022ea3edd02939565fe",
801
+ "signature": "d62d836e4532b963baa740e9c5f1f129a6534423b59e2be6ee846f0e42e346d8",
802
+ "affectsGlobalScope": false
803
+ },
784
804
  "./src/generated/OpenNewTab.tsx": {
785
805
  "version": "3cd88d0ac67ffd5c6ffa8ad1340dd961530d8161933a6e2a49ab0aa00171d755",
786
806
  "signature": "f1ac350e5321d9cb55753e118d10d753b61395dfdd09464e4dff11d4f5f1ccea",
@@ -826,21 +846,41 @@
826
846
  "signature": "bac7e6a506445f0e90bf63347a6e495f2ed78cd4966deb05e9b30d3225c87a95",
827
847
  "affectsGlobalScope": false
828
848
  },
849
+ "./src/generated/Redo.tsx": {
850
+ "version": "1f72cdfd68c44447e8da98ffa3f71a26a2ac1d130e2b4f0beb9de05e11984823",
851
+ "signature": "f38fc96aa23717bcbd6324fcf05374a4da74fc4c8e15a46e9fd37562e199db39",
852
+ "affectsGlobalScope": false
853
+ },
829
854
  "./src/generated/Refresh.tsx": {
830
855
  "version": "b878909588e0d511ada290c2b18785e632713378db0d2a28d354e02a0cae4535",
831
856
  "signature": "8467ebe6b13fa41616ae7adfa7937f6de4c4c92607c990b18ec1858ddca865dc",
832
857
  "affectsGlobalScope": false
833
858
  },
859
+ "./src/generated/ReplicaSet.tsx": {
860
+ "version": "bf9e64eeba1bc5a0e60a1ef3448b7795864abed442b92cdba0f8e3d3ac7ff1b0",
861
+ "signature": "97af2fc1da9008b5bbd6bf5b12ecf712822917da474f45962e526594705519ea",
862
+ "affectsGlobalScope": false
863
+ },
834
864
  "./src/generated/Save.tsx": {
835
865
  "version": "8869e1ef62c8e04a50868db6d0ab6f27e12ff64875d8b5a6530c03a5c731adce",
836
866
  "signature": "75743fd033d146477556f9a51d56ef67bb51c89aa4e829554bc5ce145b1f7e63",
837
867
  "affectsGlobalScope": false
838
868
  },
869
+ "./src/generated/Serverless.tsx": {
870
+ "version": "ad7df016e042573d9a17292cdecb6f6c52d031ebba100f318c1f52824c6202ca",
871
+ "signature": "1c99a52cadb255fa798d0deec10a0bb6e4230a82172788367fddaa0ccc0eaf3a",
872
+ "affectsGlobalScope": false
873
+ },
839
874
  "./src/generated/Settings.tsx": {
840
875
  "version": "c3ebcd39d0c7a7fdf5fda27cb39f417b3be47602e091afc6db16179d613e42bd",
841
876
  "signature": "29c73f5394877e475c49abb6a21850bd054fe66382861b0544f6369d6cc8be06",
842
877
  "affectsGlobalScope": false
843
878
  },
879
+ "./src/generated/ShardedCluster.tsx": {
880
+ "version": "8b6484949b35dda25cd36f7db0338c40081fe1114be8c949a193c380185e41d0",
881
+ "signature": "25b228a8e101c88d2dd6564bfc037525a2143bab988452447be6a9879ecb3606",
882
+ "affectsGlobalScope": false
883
+ },
844
884
  "./src/generated/Shell.tsx": {
845
885
  "version": "7ddff530561b125bf7d87acd0b2d31af32510da7e97a64c2b65226c1b939c139",
846
886
  "signature": "35396fa15d7ee878faad9935a8dc61a38e312990ca907a7122372dc84fc129ad",
@@ -881,6 +921,11 @@
881
921
  "signature": "48334ed035724469753bc8bd9875d96843a8bcd23f9b8c041d023435d3f6dc58",
882
922
  "affectsGlobalScope": false
883
923
  },
924
+ "./src/generated/Undo.tsx": {
925
+ "version": "85fd79eb6458b6975dced931bef87a4cea4a100344ac44f94e3ebfa1a4aed380",
926
+ "signature": "fa7523f719d7d4e1f6c6bedc56960b7953d1d3866f5b39c594a2cdd69eeaf0dd",
927
+ "affectsGlobalScope": false
928
+ },
884
929
  "./src/generated/University.tsx": {
885
930
  "version": "203fcf9b83443db8668b2156757fb0a19ebc0fa31ec820ddd4bb2e4e35a52598",
886
931
  "signature": "5593b2a841db8059e05c85808521a779712dc4179d40fc5f4f7919539a9f2238",
@@ -1472,8 +1517,8 @@
1472
1517
  "affectsGlobalScope": false
1473
1518
  },
1474
1519
  "../../node_modules/@types/react-transition-group/index.d.ts": {
1475
- "version": "a287b3414eb03d7697e2573baa57af270d64e44c3146dc4b721c1ba022f4121b",
1476
- "signature": "a287b3414eb03d7697e2573baa57af270d64e44c3146dc4b721c1ba022f4121b",
1520
+ "version": "ed3b711f533ddb3a5451f4c4bb0df3a0b95e9d0433b3b7834644dd1718d06d31",
1521
+ "signature": "ed3b711f533ddb3a5451f4c4bb0df3a0b95e9d0433b3b7834644dd1718d06d31",
1477
1522
  "affectsGlobalScope": false
1478
1523
  },
1479
1524
  "../../node_modules/@types/resolve/index.d.ts": {
@@ -2588,6 +2633,20 @@
2588
2633
  "./src/glyphCommon.ts",
2589
2634
  "./src/types.ts"
2590
2635
  ],
2636
+ "./src/generated/Clock.tsx": [
2637
+ "../../node_modules/@types/prop-types/index.d.ts",
2638
+ "../../node_modules/@types/react/index.d.ts",
2639
+ "../emotion/dist/index.d.ts",
2640
+ "./src/glyphCommon.ts",
2641
+ "./src/types.ts"
2642
+ ],
2643
+ "./src/generated/ClockWithArrow.tsx": [
2644
+ "../../node_modules/@types/prop-types/index.d.ts",
2645
+ "../../node_modules/@types/react/index.d.ts",
2646
+ "../emotion/dist/index.d.ts",
2647
+ "./src/glyphCommon.ts",
2648
+ "./src/types.ts"
2649
+ ],
2591
2650
  "./src/generated/Clone.tsx": [
2592
2651
  "../../node_modules/@types/prop-types/index.d.ts",
2593
2652
  "../../node_modules/@types/react/index.d.ts",
@@ -2770,6 +2829,13 @@
2770
2829
  "./src/glyphCommon.ts",
2771
2830
  "./src/types.ts"
2772
2831
  ],
2832
+ "./src/generated/Key.tsx": [
2833
+ "../../node_modules/@types/prop-types/index.d.ts",
2834
+ "../../node_modules/@types/react/index.d.ts",
2835
+ "../emotion/dist/index.d.ts",
2836
+ "./src/glyphCommon.ts",
2837
+ "./src/types.ts"
2838
+ ],
2773
2839
  "./src/generated/Laptop.tsx": [
2774
2840
  "../../node_modules/@types/prop-types/index.d.ts",
2775
2841
  "../../node_modules/@types/react/index.d.ts",
@@ -2819,6 +2885,13 @@
2819
2885
  "./src/glyphCommon.ts",
2820
2886
  "./src/types.ts"
2821
2887
  ],
2888
+ "./src/generated/Note.tsx": [
2889
+ "../../node_modules/@types/prop-types/index.d.ts",
2890
+ "../../node_modules/@types/react/index.d.ts",
2891
+ "../emotion/dist/index.d.ts",
2892
+ "./src/glyphCommon.ts",
2893
+ "./src/types.ts"
2894
+ ],
2822
2895
  "./src/generated/OpenNewTab.tsx": [
2823
2896
  "../../node_modules/@types/prop-types/index.d.ts",
2824
2897
  "../../node_modules/@types/react/index.d.ts",
@@ -2882,6 +2955,13 @@
2882
2955
  "./src/glyphCommon.ts",
2883
2956
  "./src/types.ts"
2884
2957
  ],
2958
+ "./src/generated/Redo.tsx": [
2959
+ "../../node_modules/@types/prop-types/index.d.ts",
2960
+ "../../node_modules/@types/react/index.d.ts",
2961
+ "../emotion/dist/index.d.ts",
2962
+ "./src/glyphCommon.ts",
2963
+ "./src/types.ts"
2964
+ ],
2885
2965
  "./src/generated/Refresh.tsx": [
2886
2966
  "../../node_modules/@types/prop-types/index.d.ts",
2887
2967
  "../../node_modules/@types/react/index.d.ts",
@@ -2889,6 +2969,13 @@
2889
2969
  "./src/glyphCommon.ts",
2890
2970
  "./src/types.ts"
2891
2971
  ],
2972
+ "./src/generated/ReplicaSet.tsx": [
2973
+ "../../node_modules/@types/prop-types/index.d.ts",
2974
+ "../../node_modules/@types/react/index.d.ts",
2975
+ "../emotion/dist/index.d.ts",
2976
+ "./src/glyphCommon.ts",
2977
+ "./src/types.ts"
2978
+ ],
2892
2979
  "./src/generated/Save.tsx": [
2893
2980
  "../../node_modules/@types/prop-types/index.d.ts",
2894
2981
  "../../node_modules/@types/react/index.d.ts",
@@ -2896,6 +2983,13 @@
2896
2983
  "./src/glyphCommon.ts",
2897
2984
  "./src/types.ts"
2898
2985
  ],
2986
+ "./src/generated/Serverless.tsx": [
2987
+ "../../node_modules/@types/prop-types/index.d.ts",
2988
+ "../../node_modules/@types/react/index.d.ts",
2989
+ "../emotion/dist/index.d.ts",
2990
+ "./src/glyphCommon.ts",
2991
+ "./src/types.ts"
2992
+ ],
2899
2993
  "./src/generated/Settings.tsx": [
2900
2994
  "../../node_modules/@types/prop-types/index.d.ts",
2901
2995
  "../../node_modules/@types/react/index.d.ts",
@@ -2903,6 +2997,13 @@
2903
2997
  "./src/glyphCommon.ts",
2904
2998
  "./src/types.ts"
2905
2999
  ],
3000
+ "./src/generated/ShardedCluster.tsx": [
3001
+ "../../node_modules/@types/prop-types/index.d.ts",
3002
+ "../../node_modules/@types/react/index.d.ts",
3003
+ "../emotion/dist/index.d.ts",
3004
+ "./src/glyphCommon.ts",
3005
+ "./src/types.ts"
3006
+ ],
2906
3007
  "./src/generated/Shell.tsx": [
2907
3008
  "../../node_modules/@types/prop-types/index.d.ts",
2908
3009
  "../../node_modules/@types/react/index.d.ts",
@@ -2959,6 +3060,13 @@
2959
3060
  "./src/glyphCommon.ts",
2960
3061
  "./src/types.ts"
2961
3062
  ],
3063
+ "./src/generated/Undo.tsx": [
3064
+ "../../node_modules/@types/prop-types/index.d.ts",
3065
+ "../../node_modules/@types/react/index.d.ts",
3066
+ "../emotion/dist/index.d.ts",
3067
+ "./src/glyphCommon.ts",
3068
+ "./src/types.ts"
3069
+ ],
2962
3070
  "./src/generated/University.tsx": [
2963
3071
  "../../node_modules/@types/prop-types/index.d.ts",
2964
3072
  "../../node_modules/@types/react/index.d.ts",
@@ -3929,6 +4037,16 @@
3929
4037
  "../../node_modules/@types/react/index.d.ts",
3930
4038
  "./src/types.ts"
3931
4039
  ],
4040
+ "./src/generated/Clock.tsx": [
4041
+ "../../node_modules/@types/prop-types/index.d.ts",
4042
+ "../../node_modules/@types/react/index.d.ts",
4043
+ "./src/types.ts"
4044
+ ],
4045
+ "./src/generated/ClockWithArrow.tsx": [
4046
+ "../../node_modules/@types/prop-types/index.d.ts",
4047
+ "../../node_modules/@types/react/index.d.ts",
4048
+ "./src/types.ts"
4049
+ ],
3932
4050
  "./src/generated/Clone.tsx": [
3933
4051
  "../../node_modules/@types/prop-types/index.d.ts",
3934
4052
  "../../node_modules/@types/react/index.d.ts",
@@ -4059,6 +4177,11 @@
4059
4177
  "../../node_modules/@types/react/index.d.ts",
4060
4178
  "./src/types.ts"
4061
4179
  ],
4180
+ "./src/generated/Key.tsx": [
4181
+ "../../node_modules/@types/prop-types/index.d.ts",
4182
+ "../../node_modules/@types/react/index.d.ts",
4183
+ "./src/types.ts"
4184
+ ],
4062
4185
  "./src/generated/Laptop.tsx": [
4063
4186
  "../../node_modules/@types/prop-types/index.d.ts",
4064
4187
  "../../node_modules/@types/react/index.d.ts",
@@ -4094,6 +4217,11 @@
4094
4217
  "../../node_modules/@types/react/index.d.ts",
4095
4218
  "./src/types.ts"
4096
4219
  ],
4220
+ "./src/generated/Note.tsx": [
4221
+ "../../node_modules/@types/prop-types/index.d.ts",
4222
+ "../../node_modules/@types/react/index.d.ts",
4223
+ "./src/types.ts"
4224
+ ],
4097
4225
  "./src/generated/OpenNewTab.tsx": [
4098
4226
  "../../node_modules/@types/prop-types/index.d.ts",
4099
4227
  "../../node_modules/@types/react/index.d.ts",
@@ -4139,21 +4267,41 @@
4139
4267
  "../../node_modules/@types/react/index.d.ts",
4140
4268
  "./src/types.ts"
4141
4269
  ],
4270
+ "./src/generated/Redo.tsx": [
4271
+ "../../node_modules/@types/prop-types/index.d.ts",
4272
+ "../../node_modules/@types/react/index.d.ts",
4273
+ "./src/types.ts"
4274
+ ],
4142
4275
  "./src/generated/Refresh.tsx": [
4143
4276
  "../../node_modules/@types/prop-types/index.d.ts",
4144
4277
  "../../node_modules/@types/react/index.d.ts",
4145
4278
  "./src/types.ts"
4146
4279
  ],
4280
+ "./src/generated/ReplicaSet.tsx": [
4281
+ "../../node_modules/@types/prop-types/index.d.ts",
4282
+ "../../node_modules/@types/react/index.d.ts",
4283
+ "./src/types.ts"
4284
+ ],
4147
4285
  "./src/generated/Save.tsx": [
4148
4286
  "../../node_modules/@types/prop-types/index.d.ts",
4149
4287
  "../../node_modules/@types/react/index.d.ts",
4150
4288
  "./src/types.ts"
4151
4289
  ],
4290
+ "./src/generated/Serverless.tsx": [
4291
+ "../../node_modules/@types/prop-types/index.d.ts",
4292
+ "../../node_modules/@types/react/index.d.ts",
4293
+ "./src/types.ts"
4294
+ ],
4152
4295
  "./src/generated/Settings.tsx": [
4153
4296
  "../../node_modules/@types/prop-types/index.d.ts",
4154
4297
  "../../node_modules/@types/react/index.d.ts",
4155
4298
  "./src/types.ts"
4156
4299
  ],
4300
+ "./src/generated/ShardedCluster.tsx": [
4301
+ "../../node_modules/@types/prop-types/index.d.ts",
4302
+ "../../node_modules/@types/react/index.d.ts",
4303
+ "./src/types.ts"
4304
+ ],
4157
4305
  "./src/generated/Shell.tsx": [
4158
4306
  "../../node_modules/@types/prop-types/index.d.ts",
4159
4307
  "../../node_modules/@types/react/index.d.ts",
@@ -4194,6 +4342,11 @@
4194
4342
  "../../node_modules/@types/react/index.d.ts",
4195
4343
  "./src/types.ts"
4196
4344
  ],
4345
+ "./src/generated/Undo.tsx": [
4346
+ "../../node_modules/@types/prop-types/index.d.ts",
4347
+ "../../node_modules/@types/react/index.d.ts",
4348
+ "./src/types.ts"
4349
+ ],
4197
4350
  "./src/generated/University.tsx": [
4198
4351
  "../../node_modules/@types/prop-types/index.d.ts",
4199
4352
  "../../node_modules/@types/react/index.d.ts",
@@ -4520,6 +4673,8 @@
4520
4673
  "./src/generated/ChevronLeft.tsx",
4521
4674
  "./src/generated/ChevronRight.tsx",
4522
4675
  "./src/generated/ChevronUp.tsx",
4676
+ "./src/generated/Clock.tsx",
4677
+ "./src/generated/ClockWithArrow.tsx",
4523
4678
  "./src/generated/Clone.tsx",
4524
4679
  "./src/generated/Cloud.tsx",
4525
4680
  "./src/generated/Code.tsx",
@@ -4546,6 +4701,7 @@
4546
4701
  "./src/generated/ImportantWithCircle.tsx",
4547
4702
  "./src/generated/InfoWithCircle.tsx",
4548
4703
  "./src/generated/InviteUser.tsx",
4704
+ "./src/generated/Key.tsx",
4549
4705
  "./src/generated/Laptop.tsx",
4550
4706
  "./src/generated/Lock.tsx",
4551
4707
  "./src/generated/MagnifyingGlass.tsx",
@@ -4553,6 +4709,7 @@
4553
4709
  "./src/generated/Menu.tsx",
4554
4710
  "./src/generated/Minus.tsx",
4555
4711
  "./src/generated/NotAllowed.tsx",
4712
+ "./src/generated/Note.tsx",
4556
4713
  "./src/generated/OpenNewTab.tsx",
4557
4714
  "./src/generated/Pause.tsx",
4558
4715
  "./src/generated/Person.tsx",
@@ -4562,9 +4719,13 @@
4562
4719
  "./src/generated/Plus.tsx",
4563
4720
  "./src/generated/PlusWithCircle.tsx",
4564
4721
  "./src/generated/QuestionMarkWithCircle.tsx",
4722
+ "./src/generated/Redo.tsx",
4565
4723
  "./src/generated/Refresh.tsx",
4724
+ "./src/generated/ReplicaSet.tsx",
4566
4725
  "./src/generated/Save.tsx",
4726
+ "./src/generated/Serverless.tsx",
4567
4727
  "./src/generated/Settings.tsx",
4728
+ "./src/generated/ShardedCluster.tsx",
4568
4729
  "./src/generated/Shell.tsx",
4569
4730
  "./src/generated/SortAscending.tsx",
4570
4731
  "./src/generated/SortDescending.tsx",
@@ -4573,6 +4734,7 @@
4573
4734
  "./src/generated/Table.tsx",
4574
4735
  "./src/generated/TimeSeries.tsx",
4575
4736
  "./src/generated/Trash.tsx",
4737
+ "./src/generated/Undo.tsx",
4576
4738
  "./src/generated/University.tsx",
4577
4739
  "./src/generated/Unlock.tsx",
4578
4740
  "./src/generated/Unsorted.tsx",