@fibery/ui-kit 1.10.1 → 1.11.1

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 (62) hide show
  1. package/package.json +3 -2
  2. package/src/Button/button.tsx +14 -7
  3. package/src/designSystem.ts +79 -8
  4. package/src/emoji-mart/app-icon-picker.tsx +27 -21
  5. package/src/emoji-mart/data/get-data.tsx +58 -0
  6. package/src/emoji-mart/emoji/emoji.tsx +26 -0
  7. package/src/emoji-mart/emoji/index.tsx +24 -0
  8. package/src/emoji-mart/emoji-index.ts +5 -0
  9. package/src/emoji-mart/emoji-mart.tsx +30 -40
  10. package/src/emoji-mart/emoji-picker.tsx +61 -28
  11. package/src/emoji-mart/emoji-support.ts +1 -0
  12. package/src/emoji-mart/icon-emoji-picker.tsx +26 -6
  13. package/src/icons/ast/Activity.ts +1 -1
  14. package/src/icons/ast/ActivityLog.ts +1 -1
  15. package/src/icons/ast/AddReactions.ts +1 -1
  16. package/src/icons/ast/AppStore.ts +1 -1
  17. package/src/icons/ast/AppStoreOneColor.ts +1 -1
  18. package/src/icons/ast/AppTemplates.ts +1 -1
  19. package/src/icons/ast/AppTemplatesOneColor.ts +1 -1
  20. package/src/icons/ast/AskForInput.ts +1 -1
  21. package/src/icons/ast/Cards.ts +1 -1
  22. package/src/icons/ast/ClearValue.ts +1 -1
  23. package/src/icons/ast/Close.ts +1 -1
  24. package/src/icons/ast/ColorCoding.ts +1 -1
  25. package/src/icons/ast/Columns.ts +1 -1
  26. package/src/icons/ast/Favorites.ts +1 -1
  27. package/src/icons/ast/FavoritesChecked.ts +1 -1
  28. package/src/icons/ast/FavoritesMenu.ts +1 -1
  29. package/src/icons/ast/Fields.ts +1 -1
  30. package/src/icons/ast/Filter.ts +1 -1
  31. package/src/icons/ast/FocusMode.ts +1 -1
  32. package/src/icons/ast/FocusModeOff.ts +1 -1
  33. package/src/icons/ast/ImageXmark.ts +8 -0
  34. package/src/icons/ast/InvitePeople.ts +1 -1
  35. package/src/icons/ast/Items.ts +1 -1
  36. package/src/icons/ast/Levels.ts +1 -1
  37. package/src/icons/ast/Lock.ts +1 -1
  38. package/src/icons/ast/MoreCompact.ts +1 -1
  39. package/src/icons/ast/MySpace.ts +1 -1
  40. package/src/icons/ast/OpenAsPage.ts +1 -1
  41. package/src/icons/ast/PageRegularMode.ts +1 -1
  42. package/src/icons/ast/PageWideMode.ts +1 -1
  43. package/src/icons/ast/Popup.ts +1 -1
  44. package/src/icons/ast/Posts.ts +1 -1
  45. package/src/icons/ast/RicheditorImageUpload.ts +1 -1
  46. package/src/icons/ast/Rows.ts +1 -1
  47. package/src/icons/ast/Search.ts +1 -1
  48. package/src/icons/ast/Settings.ts +1 -1
  49. package/src/icons/ast/Share.ts +1 -1
  50. package/src/icons/ast/Shared.ts +1 -1
  51. package/src/icons/ast/SidebarFields.ts +1 -1
  52. package/src/icons/ast/SidebarFieldsOpened.ts +1 -1
  53. package/src/icons/ast/Sort.ts +1 -1
  54. package/src/icons/ast/SortOnBottom.ts +1 -1
  55. package/src/icons/ast/SortOnTop.ts +1 -1
  56. package/src/icons/ast/TypeButton.ts +1 -1
  57. package/src/icons/ast/TypeEmoji.ts +1 -1
  58. package/src/icons/ast/Upgrade.ts +1 -1
  59. package/src/icons/ast/index.tsx +1 -0
  60. package/src/icons/react/ImageXmark.tsx +12 -0
  61. package/src/icons/react/index.tsx +1 -0
  62. package/src/emoji-mart/emoji.tsx +0 -24
@@ -23,7 +23,9 @@ type IconEmojiPickerProps = React.PropsWithChildren<{
23
23
  onReset?: () => void;
24
24
  resetLabel?: string;
25
25
  defaultTab?: "icons" | "emojis";
26
+ showColorPickerOnTabs?: ("icons" | "emojis")[];
26
27
  color?: string;
28
+ getHoverColor?: (color: string) => string | undefined;
27
29
  }>;
28
30
  export const IconEmojiPicker: React.FC<IconEmojiPickerProps> = ({
29
31
  onIconSelect,
@@ -32,7 +34,9 @@ export const IconEmojiPicker: React.FC<IconEmojiPickerProps> = ({
32
34
  defaultTab,
33
35
  onReset,
34
36
  resetLabel = "Reset",
37
+ showColorPickerOnTabs = ["icons", "emojis"],
35
38
  color,
39
+ getHoverColor,
36
40
  }) => {
37
41
  return (
38
42
  <AntTabs
@@ -40,15 +44,31 @@ export const IconEmojiPicker: React.FC<IconEmojiPickerProps> = ({
40
44
  destroyInactiveTabPane
41
45
  defaultActiveKey={defaultTab}
42
46
  items={[
43
- {
44
- key: "icons",
45
- label: <TabHeader>Icons</TabHeader>,
46
- children: <AppIconPicker color={color} onColorSelect={onColorSelect} onSelect={onIconSelect} />,
47
- },
48
47
  {
49
48
  key: "emojis",
50
49
  label: <TabHeader>Emojis</TabHeader>,
51
- children: <EmojiPicker color={color} onColorSelect={onColorSelect} onSelect={onEmojiSelect} />,
50
+ children: (
51
+ <EmojiPicker
52
+ autoFocus
53
+ color={color}
54
+ onColorSelect={showColorPickerOnTabs.includes("emojis") ? onColorSelect : undefined}
55
+ getHoverColor={getHoverColor}
56
+ onSelect={onEmojiSelect}
57
+ />
58
+ ),
59
+ },
60
+ {
61
+ key: "icons",
62
+ label: <TabHeader>Icons</TabHeader>,
63
+ children: (
64
+ <AppIconPicker
65
+ autoFocus
66
+ color={color}
67
+ onColorSelect={showColorPickerOnTabs.includes("icons") ? onColorSelect : undefined}
68
+ getHoverColor={getHoverColor}
69
+ onSelect={onIconSelect}
70
+ />
71
+ ),
52
72
  },
53
73
  ]}
54
74
  tabBarExtraContent={
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Activity: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M10.037 3.05a.95.95 0 0 0-.936.643l-2.353 6.883-1.03-2.01a.95.95 0 0 0-.846-.516H1.5l-.15.15v1.6l.15.15h2.791l1.787 3.484a.95.95 0 0 0 1.744-.127l2.048-5.99 2.287 8.919a.95.95 0 0 0 1.832.031l1.85-6.317H18.5l.15-.15V8.2l-.15-.15h-3.372a.95.95 0 0 0-.912.683l-1.078 3.68-2.218-8.649a.95.95 0 0 0-.883-.713Z"},"children":[]}],"metadata":""}]},"name":"activity"};
6
+ const Activity: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.953 3.569C7.034 2.559 8.49 2 10 2s2.966.559 4.047 1.569c1.084 1.01 1.703 2.394 1.703 3.848 0 2.105.528 3.55 1.117 4.514l.008.014c.315.514.56.916.726 1.207.082.145.155.28.208.397.026.058.055.128.077.201a.934.934 0 0 1 .04.352 1.15 1.15 0 0 1-.135.474c-.105.187-.25.3-.334.363a.94.94 0 0 1-.298.144 1.492 1.492 0 0 1-.204.042 4.06 4.06 0 0 1-.405.031c-.29.01-.695.01-1.204.01H13.25v.084a3.25 3.25 0 0 1-6.5 0v-.083H4.654c-.51 0-.914 0-1.203-.011a4.06 4.06 0 0 1-.405-.031 1.492 1.492 0 0 1-.205-.042.94.94 0 0 1-.298-.144 1.151 1.151 0 0 1-.334-.363 1.152 1.152 0 0 1-.135-.474.937.937 0 0 1 .04-.352c.022-.073.05-.143.077-.2.053-.118.126-.253.208-.398.165-.29.411-.693.726-1.207l.008-.014c.589-.964 1.117-2.409 1.117-4.514 0-1.454.62-2.837 1.703-3.848ZM8.25 15.167v.083a1.75 1.75 0 0 0 3.5 0v-.083h-3.5ZM10 3.5c-1.143 0-2.23.424-3.024 1.165-.792.74-1.226 1.73-1.226 2.752 0 2.371-.599 4.088-1.337 5.296-.241.395-.432.707-.577.951.223.003.498.003.836.003h10.656c.338 0 .613 0 .835-.003a86.666 86.666 0 0 0-.576-.95c-.738-1.209-1.337-2.926-1.337-5.297 0-1.022-.434-2.013-1.226-2.752C12.23 3.925 11.144 3.5 10 3.5Z"},"children":[]}],"metadata":""}]},"name":"activity"};
7
7
 
8
8
  export default Activity;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const ActivityLog: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M1.882 8.21c-.578 0-.725.44-.41.872l1.787 2.476c.25.344.63.337.872 0l1.787-2.483c.308-.418.168-.865-.403-.865H4.453a6.041 6.041 0 0 1 5.881-4.555 6.036 6.036 0 0 1 6.058 6.057 6.038 6.038 0 0 1-6.057 6.064 5.977 5.977 0 0 1-4.769-2.365c-.3-.345-.74-.454-1.098-.19-.337.24-.403.717-.073 1.12 1.347 1.758 3.574 2.944 5.94 2.944 4.145 0 7.573-3.428 7.573-7.573 0-4.146-3.428-7.573-7.574-7.573-3.64 0-6.723 2.63-7.426 6.071H1.882Zm8.181-2.739a.64.64 0 0 0-.644.637v3.97c0 .176.059.337.183.506l1.743 2.3c.264.343.645.402.96.175.3-.212.33-.6.095-.915l-1.7-2.286v-3.75a.638.638 0 0 0-.636-.637Z"},"children":[]}],"metadata":""}]},"name":"activity-log"};
6
+ const ActivityLog: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.545 4.07A7.417 7.417 0 1 1 2.583 10a.75.75 0 0 1 1.5 0 5.917 5.917 0 1 0 2.62-4.913h.592a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75v-2.5a.75.75 0 0 1 1.5 0v.733ZM10 5.917a.75.75 0 0 1 .75.75v3.022l1.864 1.864a.75.75 0 0 1-1.061 1.06L9.47 10.53a.75.75 0 0 1-.22-.53V6.667a.75.75 0 0 1 .75-.75Z"},"children":[]}],"metadata":""}]},"name":"activity-log"};
7
7
 
8
8
  export default ActivityLog;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const AddReactions: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M12.518 5.47a.63.63 0 0 1-.643-.642c0-.372.275-.65.643-.65h1.535V2.65c0-.371.276-.65.643-.65a.63.63 0 0 1 .634.65v1.528h1.527c.368 0 .643.278.643.65a.63.63 0 0 1-.643.641H15.33v1.537a.632.632 0 0 1-.634.641.636.636 0 0 1-.643-.65V5.47h-1.535Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M16.026 10.47a6.107 6.107 0 0 0-.344-2.016c.485-.134.93-.364 1.316-.668a7.42 7.42 0 0 1 .502 2.685c0 4.125-3.398 7.53-7.5 7.53s-7.5-3.405-7.5-7.53c0-4.118 3.39-7.53 7.493-7.53.47 0 .93.045 1.377.13-.23.435-.376.92-.419 1.432a6.118 6.118 0 0 0-.958-.075c-3.34 0-6.012 2.69-6.012 6.043s2.68 6.05 6.019 6.05a6.023 6.023 0 0 0 6.026-6.05Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M7.85 9.815c.458 0 .865-.416.865-.991 0-.576-.4-.992-.864-.992-.45 0-.842.416-.842.992 0 .575.392.99.842.99ZM12.998 8.824c0 .575-.406.99-.863.99-.45 0-.843-.415-.843-.99 0-.576.385-.992.843-.992.457 0 .864.416.864.992ZM9.993 14.057c1.524 0 2.548-1.013 2.548-1.502 0-.175-.174-.255-.341-.182l-.016.008c-.526.275-1.141.597-2.191.597-1.05 0-1.674-.326-2.203-.602l-.004-.003c-.16-.08-.334.008-.334.182 0 .489 1.023 1.502 2.54 1.502Z"},"children":[]}],"metadata":""}]},"name":"add-reactions"};
6
+ const AddReactions: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M16.75 1.75a.75.75 0 0 0-1.5 0v1.5h-1.5a.75.75 0 0 0 0 1.5h1.5v1.5a.75.75 0 1 0 1.5 0v-1.5h1.5a.75.75 0 0 0 0-1.5h-1.5v-1.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M3.5 10a6.5 6.5 0 0 1 7.398-6.439.75.75 0 0 0 .204-1.486 8 8 0 1 0 6.822 6.822.75.75 0 0 0-1.485.205A6.5 6.5 0 1 1 3.5 10Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M7.825 6.713a1.112 1.112 0 1 0 0 2.224 1.112 1.112 0 0 0 0-2.224ZM12.175 6.713a1.113 1.113 0 1 0 0 2.225 1.113 1.113 0 0 0 0-2.226ZM8.238 11.643a3.707 3.707 0 0 1-.491-.428l-.149-.168a.75.75 0 0 0-1.198.903l.078.097a5.21 5.21 0 0 0 .878.81c.598.435 1.5.893 2.644.893 1.144 0 2.046-.458 2.644-.893a5.21 5.21 0 0 0 .879-.81l.077-.097a.75.75 0 0 0-1.198-.903l-.149.168c-.11.116-.276.272-.491.428-.433.315-1.031.607-1.762.607-.73 0-1.33-.292-1.762-.607Z"},"children":[]}],"metadata":""}]},"name":"add-reactions"};
7
7
 
8
8
  export default AddReactions;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const AppStore: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"g","properties":{},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13.73 8.229v4.488a.9.9 0 0 1-.9.9h-4.5a.9.9 0 1 1 0-1.8h2.328L5.794 6.954A.9.9 0 0 1 7.067 5.68l4.863 4.863V8.23a.9.9 0 0 1 1.8 0Z","fill":"#51B69D"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M1.03 5.7c0-4.113.588-4.7 4.7-4.7 4.113 0 4.7.587 4.7 4.7 0 .43-.006.821-.022 1.177l-1.59-1.59c-.01-.718-.046-1.24-.12-1.631-.084-.45-.197-.602-.259-.665-.062-.062-.215-.174-.664-.26-.462-.086-1.108-.121-2.045-.121-.937 0-1.582.035-2.044.122-.45.085-.602.197-.665.26-.062.062-.174.214-.259.664-.087.462-.122 1.107-.122 2.044s.035 1.582.122 2.044c.085.45.197.602.26.665.062.062.214.174.664.26.408.076.959.112 1.727.12l1.584 1.584c-.38.02-.8.027-1.267.027-4.113 0-4.7-.587-4.7-4.7ZM13.56 18.295c-3.555 0-4.48-.245-4.663-3.022h1.619c.018.213.046.203.076.366.085.45.197.602.26.665.062.062.214.174.664.259.462.087 1.108.122 2.045.122.937 0 1.582-.035 2.044-.122.45-.085.602-.197.664-.26.063-.062.175-.214.26-.664.087-.462.122-1.107.122-2.044s-.035-1.583-.122-2.045c-.085-.45-.197-.602-.26-.664-.062-.062-.214-.175-.664-.26-.163-.03-.157-.035-.37-.054V8.953c2.778.184 3.026 1.085 3.026 4.642 0 4.112-.588 4.7-4.7 4.7Z","fill":"#8698A7"},"children":[]}]}],"metadata":""}]},"name":"app-store"};
6
+ const AppStore: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M9 2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h.25v1.25H6.667a2.417 2.417 0 0 0-2.417 2.417V12H4a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-.25v-.333a.917.917 0 0 1 .917-.917h6.666a.917.917 0 0 1 .917.917V12H14a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-.25v-.333a2.417 2.417 0 0 0-2.417-2.417H10.75V8H11a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H9Zm-.5 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H9a.5.5 0 0 1-.5-.5V4ZM4 13.5h2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H4a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5Zm10 0a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-2Z"},"children":[]}],"metadata":""}]},"name":"app-store"};
7
7
 
8
8
  export default AppStore;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const AppStoreOneColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"g","properties":{"fill":"#51B69D"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13.73 8.229v4.488a.9.9 0 0 1-.9.9h-4.5a.9.9 0 1 1 0-1.8h2.328L5.794 6.954A.9.9 0 0 1 7.067 5.68l4.863 4.863V8.23a.9.9 0 0 1 1.8 0Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M1.03 5.7c0-4.113.588-4.7 4.7-4.7 4.113 0 4.7.587 4.7 4.7 0 .43-.006.821-.022 1.177l-1.59-1.59c-.01-.718-.046-1.24-.12-1.631-.084-.45-.197-.602-.259-.665-.062-.062-.215-.174-.664-.26-.462-.086-1.108-.121-2.045-.121-.937 0-1.582.035-2.044.122-.45.085-.602.197-.665.26-.062.062-.174.214-.259.664-.087.462-.122 1.107-.122 2.044s.035 1.582.122 2.044c.085.45.197.602.26.665.062.062.214.174.664.26.408.076.959.112 1.727.12l1.584 1.584c-.38.02-.8.027-1.267.027-4.113 0-4.7-.587-4.7-4.7ZM13.56 18.295c-3.555 0-4.48-.245-4.663-3.022h1.619c.018.213.046.203.076.366.085.45.197.602.26.665.062.062.214.174.664.259.462.087 1.108.122 2.045.122.937 0 1.582-.035 2.044-.122.45-.085.602-.197.664-.26.063-.062.175-.214.26-.664.087-.462.122-1.107.122-2.044s-.035-1.583-.122-2.045c-.085-.45-.197-.602-.26-.664-.062-.062-.214-.175-.664-.26-.163-.03-.157-.035-.37-.054V8.953c2.778.184 3.026 1.085 3.026 4.642 0 4.112-.588 4.7-4.7 4.7Z"},"children":[]}]}],"metadata":""}]},"name":"app-store-one-color"};
6
+ const AppStoreOneColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M9 2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h.25v1.25H6.667a2.417 2.417 0 0 0-2.417 2.417V12H4a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-.25v-.333a.917.917 0 0 1 .917-.917h6.666a.917.917 0 0 1 .917.917V12H14a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-.25v-.333a2.417 2.417 0 0 0-2.417-2.417H10.75V8H11a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H9Zm-.5 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H9a.5.5 0 0 1-.5-.5V4ZM4 13.5h2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H4a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5Zm10 0a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-2Z"},"children":[]}],"metadata":""}]},"name":"app-store-one-color"};
7
7
 
8
8
  export default AppStoreOneColor;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const AppTemplates: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"g","properties":{},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.015 10.031c1.557 0 2.519.1 3.105.52.727.522.879 1.536.879 3.465 0 3.486-.498 3.984-3.984 3.984-3.487 0-3.985-.498-3.985-3.984 0-1.929.153-2.943.879-3.464.587-.421 1.548-.52 3.106-.52Zm-2.072 3.985c0-.857.033-1.39.099-1.74.016-.085.032-.146.045-.188.042-.013.103-.029.188-.045.35-.066.883-.1 1.74-.1s1.39.034 1.739.1c.085.016.146.032.189.045.013.042.028.103.044.188.066.35.1.883.1 1.74s-.034 1.39-.1 1.739a1.845 1.845 0 0 1-.044.189 1.868 1.868 0 0 1-.19.044c-.349.066-.882.1-1.738.1-.857 0-1.39-.034-1.74-.1a1.869 1.869 0 0 1-.188-.044 1.837 1.837 0 0 1-.045-.19c-.066-.349-.1-.881-.1-1.738ZM10.062 4.984c0-1.557.099-2.519.52-3.105.521-.727 1.535-.879 3.464-.879 3.486 0 3.984.498 3.984 3.984 0 3.487-.498 3.985-3.984 3.985-1.929 0-2.943-.153-3.464-.879-.421-.587-.52-1.548-.52-3.106Zm1.912 0c0-.857.033-1.39.1-1.739.015-.085.03-.146.044-.189.042-.013.104-.028.189-.044.35-.066.882-.1 1.739-.1.857 0 1.39.034 1.74.1.084.016.146.031.188.044.013.043.029.104.044.19.066.349.1.881.1 1.738s-.034 1.39-.1 1.74a1.808 1.808 0 0 1-.044.188 1.823 1.823 0 0 1-.189.045c-.35.066-.882.1-1.74.1-.856 0-1.389-.034-1.738-.1a1.831 1.831 0 0 1-.19-.045 1.815 1.815 0 0 1-.044-.188c-.066-.35-.099-.883-.099-1.74ZM1.062 4.984c0-1.557.099-2.519.52-3.105C2.103 1.152 3.117 1 5.046 1c3.486 0 3.984.498 3.984 3.984 0 3.487-.498 3.985-3.984 3.985-1.929 0-2.943-.153-3.464-.88-.421-.586-.52-1.547-.52-3.105Zm1.912 0c0-.857.033-1.39.1-1.739.015-.085.03-.146.044-.189.042-.013.104-.028.189-.044.35-.066.882-.1 1.739-.1.857 0 1.39.034 1.74.1.084.016.146.031.188.044.013.043.028.104.045.19.065.349.099.881.099 1.738s-.034 1.39-.1 1.74a1.83 1.83 0 0 1-.044.188 1.823 1.823 0 0 1-.189.045c-.35.066-.882.1-1.74.1-.856 0-1.389-.034-1.738-.1a1.832 1.832 0 0 1-.19-.045 1.837 1.837 0 0 1-.044-.188c-.066-.35-.099-.883-.099-1.74Z","fill":"#8698A7"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M13.256 10.383c-.205.206-.32.484-.32.775v1.779h-1.78a1.095 1.095 0 1 0 0 2.19h1.78v1.778a1.095 1.095 0 0 0 2.19 0v-1.779h1.778a1.095 1.095 0 1 0 0-2.19h-1.779v-1.778a1.095 1.095 0 0 0-1.869-.775Z","fill":"#51B69D"},"children":[]}]}],"metadata":""}]},"name":"app-templates"};
6
+ const AppTemplates: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13 2a2.25 2.25 0 0 0-2.25 2.25V7A2.25 2.25 0 0 0 13 9.25h2.75A2.25 2.25 0 0 0 18 7V4.25A2.25 2.25 0 0 0 15.75 2H13Zm-.75 2.25A.75.75 0 0 1 13 3.5h2.75a.75.75 0 0 1 .75.75V7a.75.75 0 0 1-.75.75H13a.75.75 0 0 1-.75-.75V4.25ZM4.25 10.75A2.25 2.25 0 0 0 2 13v2.75A2.25 2.25 0 0 0 4.25 18H7a2.25 2.25 0 0 0 2.25-2.25V13A2.25 2.25 0 0 0 7 10.75H4.25ZM3.5 13a.75.75 0 0 1 .75-.75H7a.75.75 0 0 1 .75.75v2.75a.75.75 0 0 1-.75.75H4.25a.75.75 0 0 1-.75-.75V13ZM2 4.25A2.25 2.25 0 0 1 4.25 2H7a2.25 2.25 0 0 1 2.25 2.25V7A2.25 2.25 0 0 1 7 9.25H4.25A2.25 2.25 0 0 1 2 7V4.25Zm2.25-.75a.75.75 0 0 0-.75.75V7c0 .414.336.75.75.75H7A.75.75 0 0 0 7.75 7V4.25A.75.75 0 0 0 7 3.5H4.25Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M14.38 18c-.483 0-.875-.367-.875-.85v-1.895H11.6a.875.875 0 1 1 0-1.75h1.905V11.65a.875.875 0 1 1 1.75 0v1.855H17.1a.875.875 0 1 1 0 1.75h-1.845v1.895c0 .483-.392.85-.875.85Z"},"children":[]}],"metadata":""}]},"name":"app-templates"};
7
7
 
8
8
  export default AppTemplates;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const AppTemplatesOneColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"g","properties":{},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.75 2c1.815 0 2.77.143 3.26.827.396.552.49 1.457.49 2.923s-.094 2.37-.49 2.923a1.454 1.454 0 0 1-.337.337c-.552.396-1.457.49-2.923.49s-2.37-.094-2.923-.49C2.143 8.52 2 7.565 2 5.75 2 2.469 2.469 2 5.75 2ZM3.8 5.75c0-.807.031-1.308.093-1.637.015-.08.03-.138.042-.178.04-.012.098-.027.178-.042.33-.062.83-.093 1.637-.093s1.308.031 1.637.093c.08.015.138.03.178.042.012.04.027.098.042.178.062.33.093.83.093 1.637 0 .806-.031 1.308-.093 1.637-.016.08-.03.138-.042.178a1.72 1.72 0 0 1-.178.042c-.33.062-.83.093-1.637.093s-1.308-.031-1.637-.093a1.724 1.724 0 0 1-.178-.042 1.722 1.722 0 0 1-.042-.178c-.062-.33-.093-.83-.093-1.637ZM5.75 10.5c1.466 0 2.37.094 2.923.49.684.49.827 1.445.827 3.26 0 3.281-.469 3.75-3.75 3.75S2 17.531 2 14.25c0-1.815.143-2.77.827-3.26.552-.396 1.457-.49 2.923-.49ZM3.8 14.25c0-.806.031-1.308.093-1.637.015-.08.03-.138.042-.178.04-.012.098-.027.178-.042.33-.062.83-.093 1.637-.093s1.308.031 1.637.093c.08.015.138.03.178.042.012.04.027.098.042.178.062.33.093.83.093 1.637 0 .806-.031 1.308-.093 1.637-.016.08-.03.138-.042.178-.04.012-.098.026-.178.042-.33.062-.83.093-1.637.093s-1.308-.031-1.637-.093a1.729 1.729 0 0 1-.178-.042 1.725 1.725 0 0 1-.042-.178c-.062-.33-.093-.83-.093-1.637ZM10.5 5.75c0-1.466.094-2.37.49-2.923.49-.684 1.445-.827 3.26-.827C17.531 2 18 2.469 18 5.75s-.469 3.75-3.75 3.75c-1.815 0-2.77-.143-3.26-.827-.396-.552-.49-1.457-.49-2.923Zm1.8 0c0-.807.031-1.308.093-1.637.015-.08.03-.138.042-.178.04-.012.098-.027.178-.042.33-.062.83-.093 1.637-.093.806 0 1.308.031 1.637.093.08.015.138.03.178.042.012.04.026.098.042.178.062.33.093.83.093 1.637 0 .806-.031 1.308-.093 1.637-.015.08-.03.138-.042.178-.04.012-.098.027-.178.042-.33.062-.83.093-1.637.093s-1.308-.031-1.637-.093a1.725 1.725 0 0 1-.178-.042 1.73 1.73 0 0 1-.042-.178c-.062-.33-.093-.83-.093-1.637Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M13.57 11.099a.941.941 0 0 0-.276.665v1.53h-1.53a.941.941 0 1 0 0 1.882h1.53v1.53a.941.941 0 0 0 1.883 0v-1.53h1.529a.941.941 0 1 0 0-1.882h-1.53v-1.53a.941.941 0 0 0-1.606-.665Z"},"children":[]}]}],"metadata":""}]},"name":"app-templates-one-color"};
6
+ const AppTemplatesOneColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13 2a2.25 2.25 0 0 0-2.25 2.25V7A2.25 2.25 0 0 0 13 9.25h2.75A2.25 2.25 0 0 0 18 7V4.25A2.25 2.25 0 0 0 15.75 2H13Zm-.75 2.25A.75.75 0 0 1 13 3.5h2.75a.75.75 0 0 1 .75.75V7a.75.75 0 0 1-.75.75H13a.75.75 0 0 1-.75-.75V4.25ZM4.25 10.75A2.25 2.25 0 0 0 2 13v2.75A2.25 2.25 0 0 0 4.25 18H7a2.25 2.25 0 0 0 2.25-2.25V13A2.25 2.25 0 0 0 7 10.75H4.25ZM3.5 13a.75.75 0 0 1 .75-.75H7a.75.75 0 0 1 .75.75v2.75a.75.75 0 0 1-.75.75H4.25a.75.75 0 0 1-.75-.75V13ZM2 4.25A2.25 2.25 0 0 1 4.25 2H7a2.25 2.25 0 0 1 2.25 2.25V7A2.25 2.25 0 0 1 7 9.25H4.25A2.25 2.25 0 0 1 2 7V4.25Zm2.25-.75a.75.75 0 0 0-.75.75V7c0 .414.336.75.75.75H7A.75.75 0 0 0 7.75 7V4.25A.75.75 0 0 0 7 3.5H4.25Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M14.38 18c-.483 0-.875-.367-.875-.85v-1.895H11.6a.875.875 0 1 1 0-1.75h1.905V11.65a.875.875 0 1 1 1.75 0v1.855H17.1a.875.875 0 1 1 0 1.75h-1.845v1.895c0 .483-.392.85-.875.85Z"},"children":[]}],"metadata":""}]},"name":"app-templates-one-color"};
7
7
 
8
8
  export default AppTemplatesOneColor;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const AskForInput: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M19 5c0 2.73-2.265 5-5 5-2.73 0-5-2.27-5-5 0-2.735 2.265-5 4.995-5C16.73 0 19 2.265 19 5Zm-5.51.647c0 .265.147.402.407.402.255 0 .412-.162.412-.363v-.059c0-.284.162-.465.514-.696.49-.323.844-.617.844-1.225 0-.843-.75-1.29-1.613-1.29-.873 0-1.441.408-1.579.873a.836.836 0 0 0-.044.25c0 .226.182.348.348.348.172 0 .285-.083.378-.2l.088-.123c.182-.294.441-.461.78-.461.455 0 .754.26.754.642 0 .343-.21.51-.652.819-.362.255-.637.52-.637 1.02v.063Zm-.152 1.382c0 .29.255.525.55.525.293 0 .548-.23.548-.525 0-.294-.25-.529-.549-.529-.299 0-.549.24-.549.53Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M4.6 9.3h3.876a7.04 7.04 0 0 0 1.46 1.4H4.6a.9.9 0 0 0-.9.9v3.425a.9.9 0 0 0 .9.9h11.175a.9.9 0 0 0 .9-.9V11.6a.91.91 0 0 0-.009-.126c.446-.184.87-.412 1.264-.68.093.25.145.522.145.806v3.425a2.3 2.3 0 0 1-2.3 2.3H4.6a2.3 2.3 0 0 1-2.3-2.3V11.6a2.3 2.3 0 0 1 2.3-2.3Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M5.844 12.498a.7.7 0 0 0 0 1.4h4a.7.7 0 1 0 0-1.4h-4Z"},"children":[]}],"metadata":""}]},"name":"ask-for-input"};
6
+ const AskForInput: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M3.5 6.25a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 .75.75v2a.75.75 0 0 0 1.5 0v-2A2.25 2.25 0 0 0 15.75 4H4.25A2.25 2.25 0 0 0 2 6.25v5.5A2.25 2.25 0 0 0 4.25 14H12a.75.75 0 0 0 0-1.5H4.25a.75.75 0 0 1-.75-.75v-5.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M5.75 8.25a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5ZM15.726 12.387a.85.85 0 0 1 1.674.213c0 .158-.047.275-.271.492-.11.105-.235.21-.398.345l-.074.06c-.19.16-.412.347-.638.573a.75.75 0 1 0 1.06 1.06 7.74 7.74 0 0 1 .538-.48l.069-.056c.158-.131.332-.275.484-.423.376-.363.73-.845.73-1.571a2.35 2.35 0 0 0-4.626-.587.75.75 0 1 0 1.452.374ZM16.55 16.25a.75.75 0 0 0 0 1.5h.008a.75.75 0 0 0 0-1.5h-.008Z"},"children":[]}],"metadata":""}]},"name":"ask-for-input"};
7
7
 
8
8
  export default AskForInput;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Cards: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M5.25 11a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1-.75-.75ZM6 7.25a.75.75 0 0 0 0 1.5h8a.75.75 0 0 0 0-1.5H6Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2.218 4.592C2 5.02 2 5.58 2 6.7v6.1c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 16 4.08 16 5.2 16h9.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C18 14.48 18 13.92 18 12.8V6.7c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C16.48 3.5 15.92 3.5 14.8 3.5H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874Zm1.37.845c-.088.17-.088.395-.088.843v6.94c0 .448 0 .672.087.843a.8.8 0 0 0 .35.35c.17.087.395.087.843.087h10.44c.448 0 .672 0 .843-.087a.8.8 0 0 0 .35-.35c.087-.17.087-.395.087-.843V6.28c0-.448 0-.672-.087-.843a.8.8 0 0 0-.35-.35C15.893 5 15.668 5 15.22 5H4.78c-.448 0-.672 0-.843.087a.8.8 0 0 0-.35.35Z"},"children":[]}],"metadata":""}]},"name":"cards"};
6
+ const Cards: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.25 4.5a.75.75 0 0 0-.75.75v9.5c0 .414.336.75.75.75h11.5a.75.75 0 0 0 .75-.75v-9.5a.75.75 0 0 0-.75-.75H4.25ZM2 5.25A2.25 2.25 0 0 1 4.25 3h11.5A2.25 2.25 0 0 1 18 5.25v9.5A2.25 2.25 0 0 1 15.75 17H4.25A2.25 2.25 0 0 1 2 14.75v-9.5Zm3 2.5A.75.75 0 0 1 5.75 7h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 5 7.75Zm0 3a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Z"},"children":[]}],"metadata":""}]},"name":"cards"};
7
7
 
8
8
  export default Cards;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const ClearValue: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M8.038 9.3H4.6a2.3 2.3 0 0 0-2.3 2.3v3.425a2.3 2.3 0 0 0 2.3 2.3h11.175a2.3 2.3 0 0 0 2.3-2.3V11.6a2.29 2.29 0 0 0-.391-1.284l-1.042 1.042a.902.902 0 0 1 .033.242v3.425a.9.9 0 0 1-.9.9H4.6a.9.9 0 0 1-.9-.9V11.6a.9.9 0 0 1 .9-.9h4.515L8.038 9.3Zm-2.894 3.898a.7.7 0 0 1 .7-.7h4a.7.7 0 1 1 0 1.4h-4a.7.7 0 0 1-.7-.7Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M15.959 1c-.278 0-.556.104-.765.313l-5.88 5.882a1.089 1.089 0 0 0 0 1.529l2.963 2.963c.418.417 1.11.417 1.529 0l5.88-5.883a1.089 1.089 0 0 0 0-1.528l-2.963-2.963A1.077 1.077 0 0 0 15.959 1Zm-2.934 4.04 2.936 2.934-2.92 2.92-2.935-2.936 2.92-2.919Z"},"children":[]}],"metadata":""}]},"name":"clear-value"};
6
+ const ClearValue: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M3.5 6.25a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 .75.75V9A.75.75 0 0 0 18 9V6.25A2.25 2.25 0 0 0 15.75 4H4.25A2.25 2.25 0 0 0 2 6.25v5.5A2.25 2.25 0 0 0 4.25 14H11a.75.75 0 0 0 0-1.5H4.25a.75.75 0 0 1-.75-.75v-5.5Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M5.75 8.25a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5ZM14.28 11.22a.75.75 0 1 0-1.06 1.06L14.94 14l-1.72 1.72a.75.75 0 1 0 1.06 1.06L16 15.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L17.06 14l1.72-1.72a.75.75 0 1 0-1.06-1.06L16 12.94l-1.72-1.72Z"},"children":[]}],"metadata":""}]},"name":"clear-value"};
7
7
 
8
8
  export default ClearValue;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Close: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M15.556 4.443a.827.827 0 0 0-1.17 0L10 8.83 5.614 4.443a.827.827 0 0 0-1.17 1.17L8.83 10l-4.386 4.386a.827.827 0 0 0 1.17 1.17L10 11.17l4.386 4.386a.827.827 0 1 0 1.17-1.17L11.17 10l4.386-4.387a.827.827 0 0 0 0-1.17Z"},"children":[]}],"metadata":""}]},"name":"close"};
6
+ const Close: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M3.728 15.172a.778.778 0 1 0 1.1 1.1L10 11.1l5.172 5.172a.778.778 0 0 0 1.1-1.1L11.1 10l5.172-5.172a.778.778 0 0 0-1.1-1.1L10 8.9 4.828 3.728a.778.778 0 1 0-1.1 1.1L8.9 10l-5.172 5.172Z"},"children":[]}],"metadata":""}]},"name":"close"};
7
7
 
8
8
  export default Close;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const ColorCoding: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M15.493 11.46c-.069.049-1.506 1.594-1.506 2.678 0 1.144.715 1.874 1.506 1.914.683.033 1.507-.682 1.507-1.914 0-1.148-1.437-2.63-1.507-2.678ZM7.65 16.05a1.484 1.484 0 0 0 2.13 0l5.273-5.357-.532-.54-5.806-5.9-1.37-1.392a.5.5 0 0 0-.713 0l-.364.37a.5.5 0 0 0 0 .7L7.65 5.338 3.441 9.612c-.284.29-.441.674-.441 1.082 0 .409.157.793.441 1.082l4.208 4.276ZM8.714 6.42l4.208 4.275H4.507L8.714 6.42Z"},"children":[]}],"metadata":""}]},"name":"color-coding"};
6
+ const ColorCoding: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M10 3.55a6.45 6.45 0 1 0 0 12.9 1.65 1.65 0 0 0 1.65-1.65v-.532c0-.246 0-.451.029-.636a2.35 2.35 0 0 1 1.953-1.953c.185-.03.39-.03.636-.029h.532A1.65 1.65 0 0 0 16.45 10 6.45 6.45 0 0 0 10 3.55ZM2.05 10a7.95 7.95 0 1 1 15.9 0 3.15 3.15 0 0 1-3.15 3.15h-.48c-.326 0-.402.002-.453.01a.85.85 0 0 0-.707.707c-.008.051-.01.127-.01.453v.48A3.15 3.15 0 0 1 10 17.95 7.95 7.95 0 0 1 2.05 10Zm5.6-3.6a1.15 1.15 0 1 1 2.3 0 1.15 1.15 0 0 1-2.3 0Zm4 .8a1.15 1.15 0 1 1 2.3 0 1.15 1.15 0 0 1-2.3 0Zm-6.4 2.4a1.15 1.15 0 1 1 2.3 0 1.15 1.15 0 0 1-2.3 0Z"},"children":[]}],"metadata":""}]},"name":"color-coding"};
7
7
 
8
8
  export default ColorCoding;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Columns: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2.218 4.592C2 5.02 2 5.58 2 6.7v6.1c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 16 4.08 16 5.2 16h9.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C18 14.48 18 13.92 18 12.8V6.7c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C16.48 3.5 15.92 3.5 14.8 3.5H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874Zm1.37.845c-.088.17-.088.395-.088.843v6.94c0 .448 0 .672.087.843a.8.8 0 0 0 .35.35c.17.087.395.087.843.087H6.8V5H4.78c-.448 0-.672 0-.843.087a.8.8 0 0 0-.35.35ZM11.8 14.5H8.2V5h3.6v9.5Zm1.4 0h2.02c.448 0 .672 0 .843-.087a.8.8 0 0 0 .35-.35c.087-.17.087-.395.087-.843V6.28c0-.448 0-.672-.087-.843a.8.8 0 0 0-.35-.35C15.893 5 15.668 5 15.22 5H13.2v9.5Z"},"children":[]}],"metadata":""}]},"name":"columns"};
6
+ const Columns: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.25 4.5a.75.75 0 0 0-.75.75v9.5c0 .414.336.75.75.75h2.5v-11h-2.5Zm4 0v11h3.5v-11h-3.5Zm5 0v11h2.5a.75.75 0 0 0 .75-.75v-9.5a.75.75 0 0 0-.75-.75h-2.5ZM2 5.25A2.25 2.25 0 0 1 4.25 3h11.5A2.25 2.25 0 0 1 18 5.25v9.5A2.25 2.25 0 0 1 15.75 17H4.25A2.25 2.25 0 0 1 2 14.75v-9.5Z"},"children":[]}],"metadata":""}]},"name":"columns"};
7
7
 
8
8
  export default Columns;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Favorites: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M10 1.1a.9.9 0 0 1 .807.502l2.263 4.584 5.06.74a.9.9 0 0 1 .498 1.535l-3.66 3.566.863 5.037a.9.9 0 0 1-1.306.949L10 15.633l-4.525 2.38a.9.9 0 0 1-1.306-.949l.864-5.037L1.372 8.46a.9.9 0 0 1 .498-1.535l5.06-.74 2.263-4.584A.9.9 0 0 1 10 1.1Zm0 2.933L8.335 7.406a.9.9 0 0 1-.677.493l-3.724.544 2.694 2.624a.9.9 0 0 1 .26.797l-.637 3.707 3.33-1.752a.9.9 0 0 1 .838 0l3.33 1.752-.636-3.707a.9.9 0 0 1 .259-.797l2.694-2.624-3.724-.544a.9.9 0 0 1-.677-.493L10 4.033Z"},"children":[]}],"metadata":""}]},"name":"favorites"};
6
+ const Favorites: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M9.469 1.532a1.195 1.195 0 0 1 1.062 0c.289.143.444.397.524.542.086.154.175.354.268.562l1.643 3.685 4.013.424c.226.024.444.047.617.08.162.033.452.101.677.332.262.267.383.64.329 1.01-.047.32-.242.545-.354.666-.12.13-.283.276-.452.429l-2.997 2.7.837 3.948c.047.223.093.437.114.613.02.163.044.46-.106.746-.173.33-.49.562-.859.624-.318.054-.593-.06-.743-.13-.16-.074-.35-.184-.547-.297L10 15.45l-3.496 2.016c-.197.113-.386.223-.547.297-.15.07-.424.184-.742.13a1.195 1.195 0 0 1-.86-.624c-.15-.286-.125-.582-.105-.746.02-.176.066-.39.114-.613l.837-3.947-2.998-2.701c-.169-.153-.331-.3-.452-.429-.112-.121-.306-.347-.353-.666-.054-.37.067-.743.328-1.01.226-.23.516-.3.678-.331.173-.034.39-.057.617-.081l.029-.003 3.984-.42 1.63-3.66.013-.026c.092-.208.181-.408.268-.562.08-.145.235-.399.524-.542Zm.53 1.82-1.604 3.6-.012.029c-.044.1-.122.279-.254.425a1.195 1.195 0 0 1-.402.292c-.18.08-.375.1-.483.11-.011 0-.021.002-.03.003l-3.92.414 2.928 2.639.023.02c.08.072.227.202.326.373.083.145.136.306.153.472a1.56 1.56 0 0 1-.045.493l-.006.03-.818 3.857 3.415-1.97.026-.015c.094-.055.263-.155.456-.196.163-.034.332-.034.496 0 .193.041.362.14.455.196l.027.015 3.415 1.97-.818-3.857a1.56 1.56 0 0 1-.051-.524c.017-.165.07-.326.153-.471.098-.17.245-.3.326-.373a1.87 1.87 0 0 0 .023-.02l2.928-2.64-3.92-.413-.03-.003a1.56 1.56 0 0 1-.483-.11 1.195 1.195 0 0 1-.402-.292 1.558 1.558 0 0 1-.266-.454L10 3.352Z"},"children":[]}],"metadata":""}]},"name":"favorites"};
7
7
 
8
8
  export default Favorites;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const FavoritesChecked: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"m6.761 6.61-5.019.3a.77.77 0 0 0-.454 1.369l3.882 3.15c.228.187.341.505.266.787l-1.27 4.818c-.17.675.569 1.218 1.175.844l4.223-2.681a.749.749 0 0 1 .834 0l4.242 2.68c.606.375 1.345-.168 1.175-.843l-1.27-4.8a.766.766 0 0 1 .285-.768l3.882-3.169a.77.77 0 0 0-.454-1.368l-5-.3a.784.784 0 0 1-.682-.487l-1.837-4.65a.786.786 0 0 0-1.459 0l-1.837 4.63a.784.784 0 0 1-.682.488Z"},"children":[]}],"metadata":""}]},"name":"favorites-checked"};
6
+ const FavoritesChecked: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M9.469 1.532a1.195 1.195 0 0 1 1.062 0c.289.143.444.397.524.542.086.154.175.354.268.562l1.643 3.685 4.013.424c.226.024.444.047.617.08.162.033.452.101.677.332.262.267.383.64.329 1.01-.047.32-.242.545-.354.666-.12.13-.283.276-.452.429l-2.997 2.7.837 3.948c.047.223.093.437.114.613.02.163.044.46-.106.746-.173.33-.49.562-.859.624-.318.054-.593-.06-.743-.13-.16-.074-.35-.184-.547-.297L10 15.45l-3.496 2.016c-.197.113-.386.223-.547.297-.15.07-.424.184-.742.13a1.195 1.195 0 0 1-.86-.624c-.15-.286-.125-.582-.105-.746.02-.176.066-.39.114-.613l.837-3.947-2.998-2.701c-.169-.153-.331-.3-.452-.429-.112-.121-.306-.347-.353-.666-.054-.37.067-.743.328-1.01.226-.23.516-.3.678-.331.173-.034.39-.057.617-.081l.029-.003 3.984-.42 1.63-3.66.013-.026c.092-.208.181-.408.268-.562.08-.145.235-.399.524-.542Z"},"children":[]}],"metadata":""}]},"name":"favorites-checked"};
7
7
 
8
8
  export default FavoritesChecked;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const FavoritesMenu: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M10 1.1a.9.9 0 0 1 .807.502l2.263 4.584 5.06.74a.9.9 0 0 1 .498 1.535l-3.66 3.566.863 5.037a.9.9 0 0 1-1.306.949L10 15.633l-4.525 2.38a.9.9 0 0 1-1.306-.949l.864-5.037L1.372 8.46a.9.9 0 0 1 .498-1.535l5.06-.74 2.263-4.584A.9.9 0 0 1 10 1.1Zm0 2.933L8.335 7.406a.9.9 0 0 1-.677.493l-3.724.544 2.694 2.624a.9.9 0 0 1 .26.797l-.637 3.707 3.33-1.752a.9.9 0 0 1 .838 0l3.33 1.752-.636-3.707a.9.9 0 0 1 .259-.797l2.694-2.624-3.724-.544a.9.9 0 0 1-.677-.493L10 4.033Z"},"children":[]}],"metadata":""}]},"name":"favorites-menu"};
6
+ const FavoritesMenu: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M9.469 1.532a1.195 1.195 0 0 1 1.062 0c.289.143.444.397.524.542.086.154.175.354.268.562l1.643 3.685 4.013.424c.226.024.444.047.617.08.162.033.452.101.677.332.262.267.383.64.329 1.01-.047.32-.242.545-.354.666-.12.13-.283.276-.452.429l-2.997 2.7.837 3.948c.047.223.093.437.114.613.02.163.044.46-.106.746-.173.33-.49.562-.859.624-.318.054-.593-.06-.743-.13-.16-.074-.35-.184-.547-.297L10 15.45l-3.496 2.016c-.197.113-.386.223-.547.297-.15.07-.424.184-.742.13a1.195 1.195 0 0 1-.86-.624c-.15-.286-.125-.582-.105-.746.02-.176.066-.39.114-.613l.837-3.947-2.998-2.701c-.169-.153-.331-.3-.452-.429-.112-.121-.306-.347-.353-.666-.054-.37.067-.743.328-1.01.226-.23.516-.3.678-.331.173-.034.39-.057.617-.081l.029-.003 3.984-.42 1.63-3.66.013-.026c.092-.208.181-.408.268-.562.08-.145.235-.399.524-.542Zm.53 1.82-1.604 3.6-.012.029c-.044.1-.122.279-.254.425a1.195 1.195 0 0 1-.402.292c-.18.08-.375.1-.483.11-.011 0-.021.002-.03.003l-3.92.414 2.928 2.639.023.02c.08.072.227.202.326.373.083.145.136.306.153.472a1.56 1.56 0 0 1-.045.493l-.006.03-.818 3.857 3.415-1.97.026-.015c.094-.055.263-.155.456-.196.163-.034.332-.034.496 0 .193.041.362.14.455.196l.027.015 3.415 1.97-.818-3.857a1.56 1.56 0 0 1-.051-.524c.017-.165.07-.326.153-.471.098-.17.245-.3.326-.373a1.87 1.87 0 0 0 .023-.02l2.928-2.64-3.92-.413-.03-.003a1.56 1.56 0 0 1-.483-.11 1.195 1.195 0 0 1-.402-.292 1.558 1.558 0 0 1-.266-.454L10 3.352Z"},"children":[]}],"metadata":""}]},"name":"favorites-menu"};
7
7
 
8
8
  export default FavoritesMenu;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Fields: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M5 6a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1ZM5 10a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1ZM6 13a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2H6Z"},"children":[]}],"metadata":""}]},"name":"fields"};
6
+ const Fields: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M4.75 2a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5H4.75ZM4.75 16.5a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5H4.75ZM12 10a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 10a4.5 4.5 0 0 1 4.5-4.5h7a4.5 4.5 0 1 1 0 9h-7A4.5 4.5 0 0 1 2 10Zm4.5-3a3 3 0 0 0 0 6h7a3 3 0 1 0 0-6h-7Z"},"children":[]}],"metadata":""}]},"name":"fields"};
7
7
 
8
8
  export default Fields;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Filter: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M3 6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1ZM5 10a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1ZM8 13a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2H8Z"},"children":[]}],"metadata":""}]},"name":"filter"};
6
+ const Filter: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M15.676 2c.258 0 .494 0 .692.016.213.018.446.057.677.175.329.168.596.435.764.765.118.23.157.463.175.676.016.198.016.434.016.692V5.287c0 .225.001.465-.063.697a1.749 1.749 0 0 1-.27.562c-.141.195-.33.345-.505.485l-.044.035-3.799 3.04a6.505 6.505 0 0 0-.228.187.477.477 0 0 0-.043.041.25.25 0 0 0-.039.08.44.44 0 0 0-.005.06 6.424 6.424 0 0 0-.004.295v3.586c0 .286.002.591-.097.874-.085.247-.224.47-.407.656-.21.213-.484.348-.74.474l-.066.031-2.478 1.224c-.17.084-.34.169-.488.226-.154.059-.389.133-.661.091a1.25 1.25 0 0 1-.838-.52 1.288 1.288 0 0 1-.21-.634A6.281 6.281 0 0 1 7 16.239V10.5l-.025-.11a.233.233 0 0 0-.066-.098 6.422 6.422 0 0 0-.228-.187L2.882 7.066l-.044-.035c-.176-.14-.364-.29-.505-.485a1.75 1.75 0 0 1-.27-.562c-.064-.232-.064-.472-.063-.697V4.324c0-.258 0-.494.016-.692.018-.213.057-.446.175-.676a1.75 1.75 0 0 1 .765-.765c.23-.118.463-.157.676-.175C3.83 2 4.092 2 4.35 2h11.326ZM3.633 3.529a.627.627 0 0 1 .121-.018c.13-.01.304-.011.596-.011h11.3c.292 0 .467 0 .596.011a.625.625 0 0 1 .12.018.25.25 0 0 1 .105.104.638.638 0 0 1 .018.121c.01.13.011.304.011.596v.881c0 .149 0 .232-.003.295a.456.456 0 0 1-.006.06.252.252 0 0 1-.03.066c.004-.004-.002.005 0 0-.002.004-.022.03-.052.056a6.58 6.58 0 0 1-.228.187l-3.799 3.039-.044.035c-.176.14-.364.29-.505.485-.123.17-.215.36-.27.562-.064.232-.064.472-.063.697v3.57c0 .19 0 .298-.005.38a.516.516 0 0 1-.009.076.249.249 0 0 1-.058.092.51.51 0 0 1-.064.042c-.07.04-.168.089-.338.173l-2.454 1.212-.072.035v-5.58c0-.225.001-.465-.063-.697a1.75 1.75 0 0 0-.27-.562c-.141-.195-.33-.345-.505-.485l-.044-.035-3.799-3.04a6.484 6.484 0 0 1-.228-.186l-.02-.017a.127.127 0 0 1-.024-.025c-.035-.045-.04-.077-.044-.14a6.488 6.488 0 0 1-.003-.295V4.35c0-.292 0-.467.011-.596a.628.628 0 0 1 .018-.12.25.25 0 0 1 .104-.105Z"},"children":[]}],"metadata":""}]},"name":"filter"};
7
7
 
8
8
  export default Filter;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const FocusMode: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"g","properties":{},"children":[{"type":"element","tagName":"path","properties":{"d":"M7.926 17a.778.778 0 1 0 0-1.555h-2.27l3.857-3.858a.778.778 0 1 0-1.1-1.1l-3.857 3.858v-2.27a.778.778 0 0 0-1.556 0v4.147c0 .43.348.778.778.778h4.148ZM12.074 3a.778.778 0 1 0 0 1.556h2.27l-3.857 3.857a.778.778 0 0 0 1.1 1.1l3.857-3.857v2.27a.778.778 0 0 0 1.556 0V3.778A.778.778 0 0 0 16.222 3h-4.148Z"},"children":[]}]}],"metadata":""}]},"name":"focus-mode"};
6
+ const FocusMode: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M16.25 3H12a.75.75 0 0 0 0 1.5h2.44l-3.97 3.97a.75.75 0 0 0 1.06 1.06l3.97-3.97V8A.75.75 0 0 0 17 8V3.75a.75.75 0 0 0-.75-.75ZM3.75 17H8a.75.75 0 0 0 0-1.5H5.56l3.97-3.97a.75.75 0 1 0-1.06-1.06L4.5 14.44V12A.75.75 0 0 0 3 12v4.25a.75.75 0 0 0 .75.75Z"},"children":[]}],"metadata":""}]},"name":"focus-mode"};
7
7
 
8
8
  export default FocusMode;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const FocusModeOff: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"g","properties":{},"children":[{"type":"element","tagName":"path","properties":{"d":"M15.185 9.74a.778.778 0 1 0 0-1.555h-2.27l3.857-3.857a.778.778 0 0 0-1.1-1.1l-3.857 3.857v-2.27a.778.778 0 1 0-1.556 0v4.148c0 .43.348.778.778.778h4.148ZM4.815 10.26a.778.778 0 1 0 0 1.555h2.27l-3.857 3.857a.778.778 0 1 0 1.1 1.1l3.857-3.857v2.27a.778.778 0 1 0 1.556 0v-4.148a.778.778 0 0 0-.778-.778H4.815Z"},"children":[]}]}],"metadata":""}]},"name":"focus-mode-off"};
6
+ const FocusModeOff: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M11 9.75h4.25a.75.75 0 0 0 0-1.5h-2.44l3.97-3.97a.75.75 0 0 0-1.06-1.06l-3.97 3.97V4.75a.75.75 0 0 0-1.5 0V9a.75.75 0 0 0 .75.75ZM9 10.25H4.75a.75.75 0 0 0 0 1.5h2.44l-3.97 3.97a.75.75 0 1 0 1.06 1.06l3.97-3.97v2.44a.75.75 0 0 0 1.5 0V11a.75.75 0 0 0-.75-.75Z"},"children":[]}],"metadata":""}]},"name":"focus-mode-off"};
7
7
 
8
8
  export default FocusModeOff;
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const ImageXmark: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.623 2H10a.755.755 0 0 1 0 1.51H5.653c-.52 0-.864 0-1.128.022-.256.02-.369.057-.439.093-.198.1-.36.263-.461.461-.036.07-.073.183-.093.439a15.5 15.5 0 0 0-.023 1.128v8.225l2.374-2.39.021-.021c.34-.337.626-.62.88-.835.266-.224.545-.414.882-.523a2.566 2.566 0 0 1 1.578 0c.337.11.616.3.882.523.254.214.54.498.88.835l1.045 1.036c.261-.257.49-.478.697-.652.27-.228.555-.42.899-.529a2.567 2.567 0 0 1 1.6.018c.34.117.62.316.886.55.112.099.23.212.358.338V10A.755.755 0 1 1 18 10v4.377c0 .482 0 .888-.027 1.221-.029.349-.09.683-.253 1A2.566 2.566 0 0 1 16.6 17.72a2.479 2.479 0 0 1-.891.243 4.908 4.908 0 0 1-.11.01c-.333.027-.74.027-1.22.027H5.622c-.482 0-.888 0-1.221-.027-.349-.029-.683-.09-1-.253A2.566 2.566 0 0 1 2.28 16.6a2.437 2.437 0 0 1-.237-.84C2 15.394 2 14.94 2 14.393v-8.77c0-.48 0-.887.027-1.22.029-.349.09-.683.253-1A2.566 2.566 0 0 1 3.4 2.28c.318-.162.652-.224 1-.253C4.736 2 5.142 2 5.624 2Zm10.26 14.39a1.056 1.056 0 0 0 .492-.476c.036-.07.073-.183.093-.439.021-.257.023-.591.023-1.09l-.546-.554c-.366-.38-.608-.63-.81-.808-.195-.172-.301-.229-.375-.254a1.057 1.057 0 0 0-.66-.008c-.074.024-.182.078-.38.245-.162.136-.35.317-.604.567l2.768 2.817Zm-4.367-2.291 2.35 2.392H5.654c-.52 0-.864-.001-1.128-.023-.256-.02-.369-.057-.439-.093a1.057 1.057 0 0 1-.464-.467l3.326-3.35c.365-.362.607-.602.808-.771.195-.164.3-.217.374-.241.211-.069.439-.069.65 0 .074.024.18.077.374.24.201.17.444.41.81.774l1.552 1.539Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13.22 1.22a.75.75 0 0 1 1.06 0L16 2.94l1.72-1.72a.75.75 0 1 1 1.06 1.06L17.06 4l1.72 1.72a.75.75 0 0 1-1.06 1.06L16 5.06l-1.72 1.72a.75.75 0 1 1-1.06-1.06L14.94 4l-1.72-1.72a.75.75 0 0 1 0-1.06Z"},"children":[]}],"metadata":""}]},"name":"image-xmark"};
7
+
8
+ export default ImageXmark;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const InvitePeople: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M13.732 9.768c1.754 0 3.162-1.522 3.162-3.416C16.894 4.5 15.472 3 13.732 3c-1.739 0-3.169 1.514-3.162 3.36.008 1.886 1.409 3.408 3.162 3.408Zm-8.26.155c1.535 0 2.767-1.338 2.767-3.008 0-1.62-1.246-2.95-2.767-2.95-1.514 0-2.768 1.345-2.768 2.958.007 1.669 1.24 3 2.768 3Zm8.26-1.684c-.866 0-1.598-.81-1.598-1.887-.007-1.021.74-1.824 1.598-1.824.867 0 1.599.796 1.599 1.824 0 1.063-.725 1.887-1.599 1.887Zm-8.26.184c-.683 0-1.26-.655-1.26-1.5-.008-.796.584-1.451 1.26-1.451.683 0 1.267.648 1.267 1.443 0 .853-.577 1.508-1.267 1.508ZM1.676 16.43h5.366c-.472-.29-.732-.958-.676-1.508H1.803c-.113 0-.155-.056-.155-.147 0-1.374 1.711-2.747 3.824-2.747.605 0 1.387.17 1.866.402a3.095 3.095 0 0 1 1.127-1.155c-.86-.465-2.014-.74-2.993-.74C2.444 10.535 0 12.641 0 14.972c0 .944.556 1.458 1.676 1.458Zm7.725-.008h8.655c1.296 0 1.944-.443 1.944-1.373 0-2.098-2.578-4.514-6.268-4.514s-6.274 2.416-6.274 4.514c0 .93.648 1.373 1.943 1.373Zm-.007-1.528c-.14 0-.183-.056-.183-.155 0-.93 1.655-2.676 4.521-2.676 2.867 0 4.521 1.747 4.521 2.676 0 .099-.049.155-.183.155H9.394Z"},"children":[]}],"metadata":""}]},"name":"invite-people"};
6
+ const InvitePeople: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13 3.25c-1.73 0-3 1.531-3 3.25s1.27 3.25 3 3.25c1.729 0 3-1.531 3-3.25s-1.271-3.25-3-3.25ZM11.5 6.5c0-1.043.744-1.75 1.5-1.75s1.5.707 1.5 1.75c0 1.043-.744 1.75-1.5 1.75s-1.5-.707-1.5-1.75ZM6.25 4.25c-1.6 0-2.75 1.429-2.75 3s1.15 3 2.75 3S9 8.821 9 7.25s-1.15-3-2.75-3ZM5 7.25c0-.914.64-1.5 1.25-1.5s1.25.586 1.25 1.5-.64 1.5-1.25 1.5S5 8.164 5 7.25ZM8.29 11.84c1.051-.965 2.617-1.59 4.71-1.59s3.658.625 4.71 1.59c1.045.96 1.536 2.217 1.54 3.38.003.99-.873 1.53-1.625 1.53H8.374c-.752 0-1.628-.54-1.624-1.53.004-1.163.494-2.42 1.54-3.38Zm1.014 1.105a3.243 3.243 0 0 0-1.04 2.053c-.013.139.1.252.239.252h8.996a.233.233 0 0 0 .238-.252 3.248 3.248 0 0 0-1.042-2.053c-.726-.667-1.907-1.195-3.695-1.195-1.789 0-2.97.528-3.696 1.195Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M6.249 10.75c.573 0 1.102.056 1.586.16a5.89 5.89 0 0 0-1.198 1.351 6.983 6.983 0 0 0-.388-.011c-1.49 0-2.472.45-3.08 1.016a2.91 2.91 0 0 0-.902 1.776.188.188 0 0 0 .192.207l3.29-.013a2.38 2.38 0 0 0 .516 1.514H2.37c-.753 0-1.648-.548-1.618-1.558a4.327 4.327 0 0 1 1.396-3.024c.929-.864 2.296-1.418 4.102-1.418Z"},"children":[]}],"metadata":""}]},"name":"invite-people"};
7
7
 
8
8
  export default InvitePeople;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Items: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 5.9c0-.84 0-1.26.163-1.581a1.5 1.5 0 0 1 .656-.656c.32-.163.74-.163 1.581-.163h11.2c.84 0 1.26 0 1.581.163a1.5 1.5 0 0 1 .655.656c.164.32.164.74.164 1.581v1.2c0 .84 0 1.26-.163 1.581a1.5 1.5 0 0 1-.656.656c-.32.163-.74.163-1.581.163H4.4c-.84 0-1.26 0-1.581-.163a1.5 1.5 0 0 1-.656-.656C2 8.361 2 7.941 2 7.1V5.9Zm1.5-.26c0-.224 0-.336.044-.422a.4.4 0 0 1 .174-.174C3.804 5 3.916 5 4.14 5h11.72c.224 0 .336 0 .422.044a.4.4 0 0 1 .174.174c.044.086.044.198.044.422v1.72c0 .224 0 .336-.044.422a.4.4 0 0 1-.174.174C16.196 8 16.084 8 15.86 8H4.14c-.224 0-.336 0-.422-.044a.4.4 0 0 1-.174-.174C3.5 7.696 3.5 7.584 3.5 7.36V5.64ZM2 12.9c0-.84 0-1.26.163-1.581a1.5 1.5 0 0 1 .656-.655c.32-.164.74-.164 1.581-.164h11.2c.84 0 1.26 0 1.581.164a1.5 1.5 0 0 1 .655.655c.164.32.164.74.164 1.581v1.2c0 .84 0 1.26-.163 1.581a1.5 1.5 0 0 1-.656.656c-.32.163-.74.163-1.581.163H4.4c-.84 0-1.26 0-1.581-.163a1.5 1.5 0 0 1-.656-.656C2 15.361 2 14.941 2 14.1v-1.2Zm1.5-.26c0-.224 0-.336.044-.422a.4.4 0 0 1 .174-.174C3.804 12 3.916 12 4.14 12h11.72c.224 0 .336 0 .422.044a.4.4 0 0 1 .174.174c.044.086.044.198.044.422v1.72c0 .224 0 .336-.044.422a.4.4 0 0 1-.174.174c-.086.044-.198.044-.422.044H4.14c-.224 0-.336 0-.422-.044a.4.4 0 0 1-.174-.174c-.044-.086-.044-.198-.044-.422v-1.72Z"},"children":[]}],"metadata":""}]},"name":"items"};
6
+ const Items: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.25 4.5a.75.75 0 0 0-.75.75V7c0 .414.336.75.75.75h11.5A.75.75 0 0 0 16.5 7V5.25a.75.75 0 0 0-.75-.75H4.25ZM2 5.25A2.25 2.25 0 0 1 4.25 3h11.5A2.25 2.25 0 0 1 18 5.25V7a2.25 2.25 0 0 1-2.25 2.25H4.25A2.25 2.25 0 0 1 2 7V5.25Zm2.25 7a.75.75 0 0 0-.75.75v1.75c0 .414.336.75.75.75h11.5a.75.75 0 0 0 .75-.75V13a.75.75 0 0 0-.75-.75H4.25ZM2 13a2.25 2.25 0 0 1 2.25-2.25h11.5A2.25 2.25 0 0 1 18 13v1.75A2.25 2.25 0 0 1 15.75 17H4.25A2.25 2.25 0 0 1 2 14.75V13Z"},"children":[]}],"metadata":""}]},"name":"items"};
7
7
 
8
8
  export default Items;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Levels: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 5.9c0-.84 0-1.26.163-1.581a1.5 1.5 0 0 1 .656-.656c.32-.163.74-.163 1.581-.163h11.2c.84 0 1.26 0 1.581.163a1.5 1.5 0 0 1 .655.656c.164.32.164.74.164 1.581v1.2c0 .84 0 1.26-.163 1.581a1.5 1.5 0 0 1-.656.656c-.32.163-.74.163-1.581.163H4.4c-.84 0-1.26 0-1.581-.163a1.5 1.5 0 0 1-.656-.656C2 8.361 2 7.941 2 7.1V5.9Zm1.5-.26c0-.224 0-.336.044-.422a.4.4 0 0 1 .174-.174C3.804 5 3.916 5 4.14 5h11.72c.224 0 .336 0 .422.044a.4.4 0 0 1 .174.174c.044.086.044.198.044.422v1.72c0 .224 0 .336-.044.422a.4.4 0 0 1-.174.174C16.196 8 16.084 8 15.86 8H4.14c-.224 0-.336 0-.422-.044a.4.4 0 0 1-.174-.174C3.5 7.696 3.5 7.584 3.5 7.36V5.64ZM4.5 12.9c0-.84 0-1.26.163-1.581a1.5 1.5 0 0 1 .656-.655c.32-.164.74-.164 1.581-.164h8.7c.84 0 1.26 0 1.581.164a1.5 1.5 0 0 1 .655.655c.164.32.164.74.164 1.581v1.2c0 .84 0 1.26-.163 1.581a1.5 1.5 0 0 1-.656.656c-.32.163-.74.163-1.581.163H6.9c-.84 0-1.26 0-1.581-.163a1.5 1.5 0 0 1-.656-.656c-.163-.32-.163-.74-.163-1.581v-1.2Zm1.5-.26c0-.224 0-.336.044-.422a.4.4 0 0 1 .174-.174C6.304 12 6.416 12 6.64 12h9.22c.224 0 .336 0 .422.044a.4.4 0 0 1 .174.174c.044.086.044.198.044.422v1.72c0 .224 0 .336-.044.422a.4.4 0 0 1-.174.174c-.086.044-.198.044-.422.044H6.64c-.224 0-.336 0-.422-.044a.4.4 0 0 1-.174-.174C6 14.696 6 14.584 6 14.36v-1.72Z"},"children":[]}],"metadata":""}]},"name":"levels"};
6
+ const Levels: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.361 3.5a.861.861 0 0 0-.861.861v3.222c0 .476.386.861.861.861h3.222a.861.861 0 0 0 .861-.86V4.36a.861.861 0 0 0-.86-.861H4.36ZM2 4.361A2.361 2.361 0 0 1 4.361 2h3.222a2.361 2.361 0 0 1 2.361 2.361v3.222a2.361 2.361 0 0 1-2.36 2.361h-.862v2.473a.86.86 0 0 0 .861.86h2.473v-.86a2.361 2.361 0 0 1 2.36-2.361h3.223A2.361 2.361 0 0 1 18 12.416v3.223A2.361 2.361 0 0 1 15.639 18h-3.222a2.361 2.361 0 0 1-2.361-2.361v-.861H7.583a2.361 2.361 0 0 1-2.36-2.361V9.944H4.36A2.361 2.361 0 0 1 2 7.584V4.36Zm10.417 7.195a.861.861 0 0 0-.861.86v3.223c0 .476.385.861.86.861h3.223a.861.861 0 0 0 .861-.861v-3.222a.861.861 0 0 0-.861-.861h-3.222Z"},"children":[]}],"metadata":""}]},"name":"levels"};
7
7
 
8
8
  export default Levels;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const Lock: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M6.834 16.5h6.339c.893 0 1.327-.448 1.327-1.417v-4.92c0-.872-.363-1.327-1.094-1.398v-1.58c0-2.489-1.67-3.685-3.406-3.685-1.735 0-3.4 1.196-3.4 3.686v1.598c-.699.098-1.1.546-1.1 1.378v4.921c0 .969.44 1.417 1.334 1.417Zm1.133-9.431c0-1.444.913-2.25 2.033-2.25 1.12 0 2.033.806 2.033 2.25v1.683l-4.066.006v-1.69Z"},"children":[]}],"metadata":""}]},"name":"lock"};
6
+ const Lock: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M6.912 2.94C7.594 1.988 8.647 1.5 10 1.5s2.406.487 3.088 1.44c.647.908.882 2.135.882 3.477v.913h.28c.707 0 1.408.2 1.939.692.54.5.811 1.216.811 2.058v5.67c0 .87-.54 1.56-1.041 1.986-.263.223-.55.406-.827.536-.26.122-.575.228-.882.228h-8.5C4.107 18.5 3 17.244 3 15.75v-5.67c0-.842.273-1.559.813-2.059.53-.49 1.23-.691 1.937-.691h.28v-.913c0-1.342.235-2.569.882-3.476Zm.618 4.39h4.94v-.913c0-1.21-.22-2.067-.603-2.605C11.517 3.322 10.959 3 10 3c-.96 0-1.516.321-1.867.812-.384.538-.603 1.395-.603 2.605v.913ZM10 11a.75.75 0 0 1 .75.75V14a.75.75 0 0 1-1.5 0v-2.25A.75.75 0 0 1 10 11Z"},"children":[]}],"metadata":""}]},"name":"lock"};
7
7
 
8
8
  export default Lock;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const MoreCompact: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{},"children":[{"type":"element","tagName":"path","properties":{"d":"M6.5 10a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm5 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm3.5 1.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z"},"children":[]}],"metadata":""}]},"name":"more-compact"};
6
+ const MoreCompact: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M6.5 10a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm5 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm3.5 1.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z"},"children":[]}],"metadata":""}]},"name":"more-compact"};
7
7
 
8
8
  export default MoreCompact;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const MySpace: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M6.193 18h7.624c1.267 0 1.893-.633 1.893-2.018v-5.81c0-1.228-.5-1.861-1.525-1.978v-1.72C14.185 3.453 12.128 2 10 2 7.88 2 5.817 3.455 5.817 6.473v1.72c-1.016.118-1.517.751-1.517 1.979v5.81C4.3 17.367 4.926 18 6.193 18ZM7.702 6.348c0-1.61 1.016-2.534 2.299-2.534 1.29 0 2.307.923 2.307 2.534V8.17H7.702V6.348Zm-.962 9.861c-.313 0-.47-.148-.47-.524v-5.208c0-.375.157-.516.47-.516h6.538c.312 0 .461.14.461.516v5.208c0 .376-.149.524-.461.524H6.74Z"},"children":[]}],"metadata":""}]},"name":"my-space"};
6
+ const MySpace: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M6.912 2.94C7.594 1.988 8.647 1.5 10 1.5s2.406.487 3.088 1.44c.647.908.882 2.135.882 3.477v.913h.28c.707 0 1.408.2 1.939.692.54.5.811 1.216.811 2.058v5.67c0 .87-.54 1.56-1.041 1.986-.263.223-.55.406-.827.536-.26.122-.575.228-.882.228h-8.5C4.107 18.5 3 17.244 3 15.75v-5.67c0-.842.273-1.559.813-2.059.53-.49 1.23-.691 1.937-.691h.28v-.913c0-1.342.235-2.569.882-3.476Zm.618 4.39h4.94v-.913c0-1.21-.22-2.067-.603-2.605C11.517 3.322 10.959 3 10 3c-.96 0-1.516.321-1.867.812-.384.538-.603 1.395-.603 2.605v.913ZM4.832 9.123c-.175.161-.332.445-.332.957v5.67c0 .715.484 1.25 1.25 1.25h8.502a.979.979 0 0 0 .242-.086c.155-.072.33-.183.493-.321.35-.298.513-.608.513-.843v-5.67c0-.513-.157-.797-.33-.958-.184-.17-.484-.292-.92-.292h-8.5c-.434 0-.734.122-.918.293ZM10 11a.75.75 0 0 1 .75.75V14a.75.75 0 0 1-1.5 0v-2.25A.75.75 0 0 1 10 11Z"},"children":[]}],"metadata":""}]},"name":"my-space"};
7
7
 
8
8
  export default MySpace;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const OpenAsPage: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M7.926 17a.778.778 0 1 0 0-1.555h-2.27l9.788-9.79v2.27a.778.778 0 0 0 1.556 0V3.779A.778.778 0 0 0 16.222 3h-4.148a.778.778 0 1 0 0 1.556h2.27c-3.264 3.264-6.468 6.58-9.788 9.789v-2.27a.778.778 0 0 0-1.556 0v4.147c0 .43.348.778.778.778h4.148Z"},"children":[]}],"metadata":""}]},"name":"open-as-page"};
6
+ const OpenAsPage: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M16.25 3H12a.75.75 0 0 0 0 1.5h2.44L4.5 14.44V12A.75.75 0 0 0 3 12v4.25a.75.75 0 0 0 .75.75H8a.75.75 0 0 0 0-1.5H5.56l9.94-9.94V8A.75.75 0 0 0 17 8V3.75a.75.75 0 0 0-.75-.75Z"},"children":[]}],"metadata":""}]},"name":"open-as-page"};
7
7
 
8
8
  export default OpenAsPage;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const PageRegularMode: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"g","properties":{},"children":[{"type":"element","tagName":"path","properties":{"d":"M5.876 3A.872.872 0 0 0 5 3.869c0 .48.392.868.876.868h8.248A.872.872 0 0 0 15 3.87.872.872 0 0 0 14.124 3H5.876ZM5.876 7.088A.872.872 0 0 0 5 7.956c0 .48.392.869.876.869h8.248A.872.872 0 0 0 15 7.956a.872.872 0 0 0-.876-.868H5.876ZM5 12.044c0-.48.392-.869.876-.869h8.248c.484 0 .876.39.876.869 0 .48-.392.868-.876.868H5.876A.872.872 0 0 1 5 12.044ZM5.876 15.263A.872.872 0 0 0 5 16.13c0 .48.392.869.876.869h8.248a.872.872 0 0 0 .876-.869.872.872 0 0 0-.876-.868H5.876Z"},"children":[]}]}],"metadata":""}]},"name":"page-regular-mode"};
6
+ const PageRegularMode: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M10.75 3.75a.75.75 0 0 0-1.5 0v12.5a.75.75 0 0 0 1.5 0V3.75Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M5.78 6.97a.75.75 0 0 1 0 1.06L4.56 9.25h2.69a.75.75 0 0 1 0 1.5H4.56l1.22 1.22a.75.75 0 1 1-1.06 1.06l-2.5-2.5a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 0ZM14.22 6.97a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 0 1 0 1.06l-2.5 2.5a.75.75 0 1 1-1.06-1.06l1.22-1.22h-2.69a.75.75 0 0 1 0-1.5h2.69l-1.22-1.22a.75.75 0 0 1 0-1.06Z"},"children":[]}],"metadata":""}]},"name":"page-regular-mode"};
7
7
 
8
8
  export default PageRegularMode;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const PageWideMode: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"g","properties":{},"children":[{"type":"element","tagName":"path","properties":{"d":"M3.869 3a.869.869 0 0 0 0 1.737H16.13a.869.869 0 0 0 0-1.737H3.87ZM3.869 7.088a.869.869 0 0 0 0 1.737H16.13a.869.869 0 0 0 0-1.737H3.87ZM3 12.044c0-.48.389-.869.869-.869H16.13a.869.869 0 0 1 0 1.737H3.87A.869.869 0 0 1 3 12.044ZM3.869 15.263a.869.869 0 0 0 0 1.737H16.13a.869.869 0 0 0 0-1.737H3.87Z"},"children":[]}]}],"metadata":""}]},"name":"page-wide-mode"};
6
+ const PageWideMode: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M10.75 3.75a.75.75 0 0 0-1.5 0v12.5a.75.75 0 0 0 1.5 0V3.75Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M4.22 6.97a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 0 1 0 1.06l-2.5 2.5a.75.75 0 0 1-1.06-1.06l1.22-1.22H2.75a.75.75 0 0 1 0-1.5h2.69L4.22 8.03a.75.75 0 0 1 0-1.06ZM15.78 6.97a.75.75 0 0 1 0 1.06l-1.22 1.22h2.69a.75.75 0 0 1 0 1.5h-2.69l1.22 1.22a.75.75 0 1 1-1.06 1.06l-2.5-2.5a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 0Z"},"children":[]}],"metadata":""}]},"name":"page-wide-mode"};
7
7
 
8
8
  export default PageWideMode;