@bigbinary/neeto-icons-rn 1.20.22 → 1.20.23

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 (72) hide show
  1. package/dist/icons/AccessControl.js +28 -0
  2. package/dist/icons/AgentStatus.js +27 -0
  3. package/dist/icons/Approval.js +28 -0
  4. package/dist/icons/BusinessHour.js +28 -0
  5. package/dist/icons/CategoriesSettings.js +28 -0
  6. package/dist/icons/Category.js +12 -5
  7. package/dist/icons/ChatQuestions.js +28 -0
  8. package/dist/icons/CompanyInfo.js +28 -0
  9. package/dist/icons/CompanyTags.js +34 -0
  10. package/dist/icons/ContactField.js +34 -0
  11. package/dist/icons/ContactTags.js +41 -0
  12. package/dist/icons/CustomDomain.js +13 -5
  13. package/dist/icons/CustomField.js +33 -0
  14. package/dist/icons/Customize.js +15 -9
  15. package/dist/icons/DocumentationSync.js +30 -0
  16. package/dist/icons/Domain.js +28 -0
  17. package/dist/icons/EmailSync.js +28 -0
  18. package/dist/icons/EmailTemplates.js +31 -0
  19. package/dist/icons/EmailsBanned.js +32 -0
  20. package/dist/icons/ExcludedDomains.js +36 -0
  21. package/dist/icons/ExpenseCategories.js +27 -0
  22. package/dist/icons/FeatureSettings.js +29 -0
  23. package/dist/icons/Field.js +22 -0
  24. package/dist/icons/Group.js +15 -5
  25. package/dist/icons/HourFormat.js +29 -0
  26. package/dist/icons/ImportTimesheet.js +46 -0
  27. package/dist/icons/InfoRound.js +28 -0
  28. package/dist/icons/IntroPages.js +30 -0
  29. package/dist/icons/InvoiceSettings.js +27 -0
  30. package/dist/icons/IpRestriction.js +29 -0
  31. package/dist/icons/LockMessage.js +28 -0
  32. package/dist/icons/ManageTemplates.js +34 -0
  33. package/dist/icons/MappedField.js +35 -0
  34. package/dist/icons/MeetingLimit.js +27 -0
  35. package/dist/icons/MeetingReminder.js +27 -0
  36. package/dist/icons/MobileAndDesktopApps.js +28 -0
  37. package/dist/icons/NavLinks.js +26 -0
  38. package/dist/icons/Notification.js +11 -4
  39. package/dist/icons/Pipeline.js +30 -0
  40. package/dist/icons/Redirect.js +27 -0
  41. package/dist/icons/RedirectUrl.js +27 -0
  42. package/dist/icons/Score.js +27 -0
  43. package/dist/icons/Security.js +12 -21
  44. package/dist/icons/Seo.js +19 -12
  45. package/dist/icons/SlaPolicies.js +31 -0
  46. package/dist/icons/SmsTemplates.js +30 -0
  47. package/dist/icons/SplitPayment.js +37 -0
  48. package/dist/icons/StartWeekOn.js +28 -0
  49. package/dist/icons/Subdomain.js +15 -5
  50. package/dist/icons/Survey.js +31 -0
  51. package/dist/icons/Tabs.js +26 -0
  52. package/dist/icons/Tag.js +16 -9
  53. package/dist/icons/Tags.js +12 -11
  54. package/dist/icons/TaskOutcome.js +29 -0
  55. package/dist/icons/TaskType.js +29 -0
  56. package/dist/icons/Taxonomy.js +27 -0
  57. package/dist/icons/Templates.js +26 -0
  58. package/dist/icons/TicketField.js +30 -0
  59. package/dist/icons/TicketSettings.js +29 -0
  60. package/dist/icons/TicketTags.js +34 -0
  61. package/dist/icons/TimesheetVerifications.js +39 -0
  62. package/dist/icons/UserInfo.js +28 -0
  63. package/dist/icons/UserNotification.js +15 -5
  64. package/dist/icons/UserTags.js +27 -0
  65. package/dist/icons/VideoAccessControl.js +28 -0
  66. package/dist/icons/ViewSettings.js +29 -0
  67. package/dist/icons/Views.js +28 -0
  68. package/dist/icons/WidgetVisibility.js +28 -0
  69. package/dist/icons/Workflows.js +52 -0
  70. package/dist/icons/WorkspaceInfo.js +28 -0
  71. package/dist/icons/index.js +59 -0
  72. package/package.json +1 -1
@@ -0,0 +1,27 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgExpenseCategories = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ clipPath="url(#ExpenseCategories_svg__a)"
17
+ >
18
+ <Path d="M4 4h6v6H4zM14 4h6v6h-6zM4 14h6v6H4zM18.5 14.875h-2.187a1.313 1.313 0 0 0 0 2.625h.875a1.313 1.313 0 0 1 0 2.625H15M16.75 20.125V21m0-7v.875" />
19
+ </G>
20
+ <Defs>
21
+ <ClipPath id="ExpenseCategories_svg__a">
22
+ <Path fill={props.color} d="M0 0h24v24H0z" />
23
+ </ClipPath>
24
+ </Defs>
25
+ </Svg>
26
+ );
27
+ export default SvgExpenseCategories;
@@ -0,0 +1,29 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgFeatureSettings = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ clipPath="url(#FeatureSettings_svg__a)"
17
+ >
18
+ <Path d="m20.5 10.695.752-.732a.5.5 0 0 0-.277-.853l-5.636-.817a.5.5 0 0 1-.376-.274L12.44 2.911a.5.5 0 0 0-.896 0L9.023 8.019a.5.5 0 0 1-.376.274L3.01 9.11a.5.5 0 0 0-.277.853l4.084 3.976a.5.5 0 0 1 .145.442l-.964 5.615a.5.5 0 0 0 .726.527L11 18.277" />
19
+ <Path d="M17.932 12a.53.53 0 0 1 .31.101c.091.066.16.16.198.267l.274.786a.56.56 0 0 0 .239.293l.813.484c.11.065.24.088.366.065l.799-.148a.53.53 0 0 1 .323.042.55.55 0 0 1 .241.227l.432.766a.57.57 0 0 1-.054.637l-.524.638a.56.56 0 0 0-.128.359v.966c0 .132.045.259.128.36l.524.637a.56.56 0 0 1 .054.637l-.432.766a.55.55 0 0 1-.24.227.53.53 0 0 1-.323.042l-.8-.148a.53.53 0 0 0-.365.065l-.814.484a.56.56 0 0 0-.238.293l-.274.786a.55.55 0 0 1-.198.267.53.53 0 0 1-.311.101h-.864a.53.53 0 0 1-.31-.101.55.55 0 0 1-.198-.267l-.274-.786a.56.56 0 0 0-.238-.293l-.814-.484a.53.53 0 0 0-.366-.065l-.799.148a.53.53 0 0 1-.324-.042.55.55 0 0 1-.24-.227l-.432-.766a.57.57 0 0 1 .054-.637l.524-.638a.56.56 0 0 0 .128-.359v-.966a.56.56 0 0 0-.128-.36l-.519-.637a.56.56 0 0 1-.054-.637l.432-.766a.526.526 0 0 1 .564-.269l.799.148c.125.023.255 0 .365-.065l.815-.484a.56.56 0 0 0 .238-.293l.274-.786a.55.55 0 0 1 .195-.265.53.53 0 0 1 .308-.103z" />
20
+ <Path d="M17.5 18.528c.82 0 1.485-.684 1.485-1.528s-.665-1.528-1.485-1.528-1.485.684-1.485 1.528.665 1.528 1.485 1.528" />
21
+ </G>
22
+ <Defs>
23
+ <ClipPath id="FeatureSettings_svg__a">
24
+ <Path fill={props.color} d="M0 0h24v24H0z" />
25
+ </ClipPath>
26
+ </Defs>
27
+ </Svg>
28
+ );
29
+ export default SvgFeatureSettings;
@@ -0,0 +1,22 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgField = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G stroke={props.color} strokeWidth={1.5} clipPath="url(#Field_svg__a)">
12
+ <Rect width={16} height={8} x={4} y={8} rx={2} />
13
+ <Path strokeLinecap="round" d="M7 10v4" />
14
+ </G>
15
+ <Defs>
16
+ <ClipPath id="Field_svg__a">
17
+ <Path fill={props.color} d="M0 0h24v24H0z" />
18
+ </ClipPath>
19
+ </Defs>
20
+ </Svg>
21
+ );
22
+ export default SvgField;
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import Svg, { Path } from "react-native-svg";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
3
  const SvgGroup = (props) => (
4
4
  <Svg
5
5
  xmlns="http://www.w3.org/2000/svg"
@@ -8,10 +8,20 @@ const SvgGroup = (props) => (
8
8
  fill="none"
9
9
  {...props}
10
10
  >
11
- <Path
12
- fill={props.color}
13
- d="M26 14h-2v2h2a3.004 3.004 0 0 1 3 3v4h2v-4a5.005 5.005 0 0 0-5-5M24 4a3 3 0 1 1 0 6 3 3 0 0 1 0-6m0-2a5 5 0 1 0 0 10 5 5 0 0 0 0-10m-1 28h-2v-2a3.004 3.004 0 0 0-3-3h-4a3.004 3.004 0 0 0-3 3v2H9v-2a5.006 5.006 0 0 1 5-5h4a5.006 5.006 0 0 1 5 5zm-7-17a3 3 0 1 1 0 5.999A3 3 0 0 1 16 13m0-2a5 5 0 1 0 0 10 5 5 0 0 0 0-10m-8 3H6a5.006 5.006 0 0 0-5 5v4h2v-4a3.003 3.003 0 0 1 3-3h2zM8 4a3 3 0 1 1 0 6 3 3 0 0 1 0-6m0-2a5 5 0 1 0 0 10A5 5 0 0 0 8 2"
14
- />
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ clipPath="url(#Group_svg__a)"
17
+ >
18
+ <Path d="M5 7a4 4 0 1 0 8 0 4 4 0 0 0-8 0M3 21v-2a4 4 0 0 1 4-4h4c.96 0 1.84.338 2.53.901M16 3.13a4 4 0 0 1 0 7.75M16 19h6M19 16v6" />
19
+ </G>
20
+ <Defs>
21
+ <ClipPath id="Group_svg__a">
22
+ <Path fill={props.color} d="M0 0h24v24H0z" />
23
+ </ClipPath>
24
+ </Defs>
15
25
  </Svg>
16
26
  );
17
27
  export default SvgGroup;
@@ -0,0 +1,29 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgHourFormat = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ clipPath="url(#HourFormat_svg__a)"
17
+ >
18
+ <Path d="M10.998 19a8 8 0 1 1 7.94-9" />
19
+ <Path d="M11 6.556V11l1.778 1.778M18.932 13a.53.53 0 0 1 .31.101c.091.066.16.16.198.267l.274.786a.56.56 0 0 0 .239.293l.813.484c.11.065.24.088.366.065l.799-.148a.53.53 0 0 1 .323.042.55.55 0 0 1 .241.227l.432.766a.57.57 0 0 1-.054.637l-.524.638a.56.56 0 0 0-.128.359v.966c0 .132.045.259.128.36l.524.637a.56.56 0 0 1 .054.637l-.432.766a.55.55 0 0 1-.24.227.53.53 0 0 1-.323.042l-.8-.148a.53.53 0 0 0-.365.065l-.814.484a.56.56 0 0 0-.238.293l-.274.786a.55.55 0 0 1-.198.267.53.53 0 0 1-.311.101h-.864a.53.53 0 0 1-.31-.101.55.55 0 0 1-.198-.267l-.274-.786a.56.56 0 0 0-.238-.293l-.814-.484a.53.53 0 0 0-.366-.065l-.799.148a.53.53 0 0 1-.324-.042.55.55 0 0 1-.24-.227l-.432-.766a.57.57 0 0 1 .054-.637l.524-.638a.56.56 0 0 0 .128-.359v-.966a.56.56 0 0 0-.128-.36l-.519-.637a.56.56 0 0 1-.054-.637l.432-.766a.526.526 0 0 1 .564-.269l.799.148c.125.023.255 0 .365-.065l.815-.484a.56.56 0 0 0 .238-.293l.274-.786a.55.55 0 0 1 .195-.265.53.53 0 0 1 .308-.103z" />
20
+ <Path d="M18.5 19.528c.82 0 1.485-.684 1.485-1.528s-.665-1.528-1.485-1.528-1.485.684-1.485 1.528.665 1.528 1.485 1.528" />
21
+ </G>
22
+ <Defs>
23
+ <ClipPath id="HourFormat_svg__a">
24
+ <Path fill={props.color} d="M0 0h24v24H0z" />
25
+ </ClipPath>
26
+ </Defs>
27
+ </Svg>
28
+ );
29
+ export default SvgHourFormat;
@@ -0,0 +1,46 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgImportTimesheet = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <Path
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeWidth={1.5}
15
+ d="M13 5h4a2 2 0 0 1 2 2v6.5m-14-.97V19a2 2 0 0 0 2 2h7"
16
+ />
17
+ <Path
18
+ stroke={props.color}
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ strokeWidth={1.5}
22
+ d="M2 6a4 4 0 1 0 8 0 4 4 0 0 0-8 0"
23
+ />
24
+ <Path
25
+ stroke={props.color}
26
+ strokeLinecap="round"
27
+ strokeLinejoin="round"
28
+ strokeWidth={1.5}
29
+ d="M6 4v2h2"
30
+ />
31
+ <Path
32
+ stroke={props.color}
33
+ strokeLinecap="round"
34
+ strokeWidth={1.5}
35
+ d="M11 10h4M8 13h7M8 16h5"
36
+ />
37
+ <Path
38
+ stroke={props.color}
39
+ strokeLinecap="round"
40
+ strokeLinejoin="round"
41
+ strokeWidth={1.5}
42
+ d="m17 20 2 2 2-2M19 16.5V21"
43
+ />
44
+ </Svg>
45
+ );
46
+ export default SvgImportTimesheet;
@@ -0,0 +1,28 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgInfoRound = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ clipPath="url(#InfoRound_svg__a)"
17
+ >
18
+ <Path d="M3 12a9 9 0 1 0 18.001 0A9 9 0 0 0 3 12M12 9h.01" />
19
+ <Path d="M11 12h1v4h1" />
20
+ </G>
21
+ <Defs>
22
+ <ClipPath id="InfoRound_svg__a">
23
+ <Path fill={props.color} d="M0 0h24v24H0z" />
24
+ </ClipPath>
25
+ </Defs>
26
+ </Svg>
27
+ );
28
+ export default SvgInfoRound;
@@ -0,0 +1,30 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgIntroPages = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeWidth={1.5}
15
+ clipPath="url(#IntroPages_svg__a)"
16
+ >
17
+ <Path
18
+ strokeLinejoin="round"
19
+ d="M19 13.488V12h2l-9-9-9 9h2v7a2 2 0 0 0 2 2h6.525"
20
+ />
21
+ <Path d="M19 16v6M22 19h-6" />
22
+ </G>
23
+ <Defs>
24
+ <ClipPath id="IntroPages_svg__a">
25
+ <Path fill={props.color} d="M0 0h24v24H0z" />
26
+ </ClipPath>
27
+ </Defs>
28
+ </Svg>
29
+ );
30
+ export default SvgIntroPages;
@@ -0,0 +1,27 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgInvoiceSettings = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <Path
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ d="M10 7H2.833A.833.833 0 0 0 2 7.833v11.103c0 .236.1.462.277.62l2.092 1.878a.833.833 0 0 0 1.186-.075l.93-1.073a.833.833 0 0 1 1.138-.114l1.8 1.384a.83.83 0 0 0 1.094-.068l1.23-1.216a.833.833 0 0 1 1.172 0l1.115 1.102c.342.339.9.318 1.216-.047l1.546-1.784a.83.83 0 0 0 .204-.546v-4.005M17.932 2a.53.53 0 0 1 .31.101c.091.066.16.16.198.267l.274.786a.56.56 0 0 0 .239.293l.813.484c.11.065.24.088.366.065l.799-.148a.53.53 0 0 1 .323.042.55.55 0 0 1 .241.227l.432.766a.57.57 0 0 1-.054.637l-.524.638a.56.56 0 0 0-.128.359v.966c0 .132.045.259.128.36l.524.637a.56.56 0 0 1 .054.637l-.432.766a.55.55 0 0 1-.24.227.53.53 0 0 1-.323.042l-.8-.148a.53.53 0 0 0-.365.065l-.814.484a.56.56 0 0 0-.238.293l-.274.786a.55.55 0 0 1-.198.267.53.53 0 0 1-.311.101h-.864a.53.53 0 0 1-.31-.101.55.55 0 0 1-.198-.267l-.274-.786a.56.56 0 0 0-.238-.293l-.814-.484a.53.53 0 0 0-.366-.065l-.799.148a.53.53 0 0 1-.324-.042.55.55 0 0 1-.24-.227l-.432-.766a.57.57 0 0 1 .054-.637l.524-.638a.56.56 0 0 0 .128-.359v-.966a.56.56 0 0 0-.128-.36l-.519-.637a.56.56 0 0 1-.054-.637l.432-.766a.526.526 0 0 1 .564-.269l.799.148c.125.023.255 0 .365-.065l.815-.484a.56.56 0 0 0 .238-.293l.274-.786a.55.55 0 0 1 .195-.265.53.53 0 0 1 .308-.103z"
17
+ />
18
+ <Path
19
+ stroke={props.color}
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ strokeWidth={1.5}
23
+ d="M17.5 8.528c.82 0 1.485-.684 1.485-1.528S18.32 5.472 17.5 5.472 16.015 6.156 16.015 7s.665 1.528 1.485 1.528M11.5 10.875H9.313a1.313 1.313 0 0 0 0 2.625h.874a1.313 1.313 0 0 1 0 2.625H8M9.75 16.125V17m0-7v.875"
24
+ />
25
+ </Svg>
26
+ );
27
+ export default SvgInvoiceSettings;
@@ -0,0 +1,29 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgIpRestriction = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ clipPath="url(#IpRestriction_svg__a)"
17
+ >
18
+ <Path d="M11.5 21H7a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2h10M8 11V7a4 4 0 0 1 8 0v4" />
19
+ <Path d="M17.5 14a5.33 5.33 0 0 0 3.778 1.333A5.333 5.333 0 0 1 17.5 22a5.335 5.335 0 0 1-3.778-6.667A5.33 5.33 0 0 0 17.5 14" />
20
+ <Path d="m16.5 18.333.833.834L19 17.5" />
21
+ </G>
22
+ <Defs>
23
+ <ClipPath id="IpRestriction_svg__a">
24
+ <Path fill={props.color} d="M0 0h24v24H0z" />
25
+ </ClipPath>
26
+ </Defs>
27
+ </Svg>
28
+ );
29
+ export default SvgIpRestriction;
@@ -0,0 +1,28 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgLockMessage = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ clipPath="url(#LockMessage_svg__a)"
17
+ >
18
+ <Path d="M13 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3.5" />
19
+ <Path d="m3 7 9 6 9-6M16 17.429a.857.857 0 0 1 .857-.857h4.286a.857.857 0 0 1 .857.857V20a.857.857 0 0 1-.857.857h-4.286A.857.857 0 0 1 16 20zM17.286 16.572v-1.715a1.714 1.714 0 1 1 3.428 0v1.715" />
20
+ </G>
21
+ <Defs>
22
+ <ClipPath id="LockMessage_svg__a">
23
+ <Path fill={props.color} d="M0 0h24v24H0z" />
24
+ </ClipPath>
25
+ </Defs>
26
+ </Svg>
27
+ );
28
+ export default SvgLockMessage;
@@ -0,0 +1,34 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgManageTemplates = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeWidth={1.5}
15
+ clipPath="url(#ManageTemplates_svg__a)"
16
+ >
17
+ <Path d="M10 21H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 19 7.828V11" />
18
+ <Path
19
+ strokeLinejoin="round"
20
+ d="M9 8h6M9 11h6M15.663 13.659c.213-.879 1.462-.879 1.674 0a.862.862 0 0 0 1.287.532c.771-.47 1.655.413 1.185 1.185a.86.86 0 0 0 .532 1.287c.878.212.878 1.462 0 1.674a.862.862 0 0 0-.533 1.287c.47.771-.413 1.655-1.184 1.185a.86.86 0 0 0-1.287.532c-.212.878-1.461.878-1.674 0a.862.862 0 0 0-1.287-.533c-.771.47-1.655-.413-1.185-1.184a.86.86 0 0 0-.533-1.287c-.877-.212-.877-1.462 0-1.674a.862.862 0 0 0 .534-1.287c-.47-.771.412-1.655 1.185-1.185a.86.86 0 0 0 1.285-.533"
21
+ />
22
+ <Path
23
+ strokeLinejoin="round"
24
+ d="M15.273 17.5a1.227 1.227 0 1 0 2.454 0 1.227 1.227 0 0 0-2.454 0"
25
+ />
26
+ </G>
27
+ <Defs>
28
+ <ClipPath id="ManageTemplates_svg__a">
29
+ <Path fill={props.color} d="M0 0h24v24H0z" />
30
+ </ClipPath>
31
+ </Defs>
32
+ </Svg>
33
+ );
34
+ export default SvgManageTemplates;
@@ -0,0 +1,35 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgMappedField = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeWidth={1.5}
15
+ clipPath="url(#MappedField_svg__a)"
16
+ >
17
+ <Path
18
+ strokeLinejoin="round"
19
+ d="M13.5 18.75a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5M20.5 17v2.5a1 1 0 0 1-1 1h-4"
20
+ />
21
+ <Path
22
+ strokeLinejoin="round"
23
+ d="m19 17.5 1.5-1.5 1.5 1.5M20 13.75a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5M13 15.5V13a1 1 0 0 1 1-1h4"
24
+ />
25
+ <Path strokeLinejoin="round" d="M14.5 15 13 16.5 11.5 15" />
26
+ <Path d="M20 8V7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4M7 7v4" />
27
+ </G>
28
+ <Defs>
29
+ <ClipPath id="MappedField_svg__a">
30
+ <Path fill={props.color} d="M0 0h24v24H0z" />
31
+ </ClipPath>
32
+ </Defs>
33
+ </Svg>
34
+ );
35
+ export default SvgMappedField;
@@ -0,0 +1,27 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgMeetingLimit = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ clipPath="url(#MeetingLimit_svg__a)"
17
+ >
18
+ <Path d="M15 21H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5M16 3v4M8 3v4M4 11h16M11 15h1M12 15v3M19 16v3M19 22v.01" />
19
+ </G>
20
+ <Defs>
21
+ <ClipPath id="MeetingLimit_svg__a">
22
+ <Path fill={props.color} d="M0 0h24v24H0z" />
23
+ </ClipPath>
24
+ </Defs>
25
+ </Svg>
26
+ );
27
+ export default SvgMeetingLimit;
@@ -0,0 +1,27 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgMeetingReminder = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ clipPath="url(#MeetingReminder_svg__a)"
17
+ >
18
+ <Path d="M11 21H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4M16 3v4M8 3v4M4 11h16M17 15a1 1 0 0 1 2 0 3.5 3.5 0 0 1 2 3v1.5a2 2 0 0 0 1 1.5h-8a2 2 0 0 0 1-1.5V18a3.5 3.5 0 0 1 2-3M16.5 21v.5a1.5 1.5 0 1 0 3 0V21" />
19
+ </G>
20
+ <Defs>
21
+ <ClipPath id="MeetingReminder_svg__a">
22
+ <Path fill={props.color} d="M0 0h24v24H0z" />
23
+ </ClipPath>
24
+ </Defs>
25
+ </Svg>
26
+ );
27
+ export default SvgMeetingReminder;
@@ -0,0 +1,28 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgMobileAndDesktopApps = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ clipPath="url(#MobileAndDesktopApps_svg__a)"
17
+ >
18
+ <Path d="M13.034 16.203H3.05A1.05 1.05 0 0 1 2 15.153V4.643a1.05 1.05 0 0 1 1.05-1.05h16.814a1.05 1.05 0 0 1 1.051 1.05v.525M9 20h4M11 16.203v3.204" />
19
+ <Path d="M14.96 9.081a1.285 1.285 0 0 1 1.285-1.284h5.137a1.285 1.285 0 0 1 1.285 1.284v8.99a1.285 1.285 0 0 1-1.285 1.285h-5.137a1.285 1.285 0 0 1-1.285-1.284zM18.043 8.567h1.541" />
20
+ </G>
21
+ <Defs>
22
+ <ClipPath id="MobileAndDesktopApps_svg__a">
23
+ <Path fill={props.color} d="M0 0h24v24H0z" />
24
+ </ClipPath>
25
+ </Defs>
26
+ </Svg>
27
+ );
28
+ export default SvgMobileAndDesktopApps;
@@ -0,0 +1,26 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgNavLinks = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <Path
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"
17
+ />
18
+ <Path
19
+ stroke={props.color}
20
+ strokeLinecap="round"
21
+ strokeWidth={1.5}
22
+ d="M11 6h7M3 9h17M6 6h2M6 18h2M11 18h2M16 18h2"
23
+ />
24
+ </Svg>
25
+ );
26
+ export default SvgNavLinks;
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import Svg, { Path } from "react-native-svg";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
3
  const SvgNotification = (props) => (
4
4
  <Svg
5
5
  xmlns="http://www.w3.org/2000/svg"
@@ -8,13 +8,20 @@ const SvgNotification = (props) => (
8
8
  fill="none"
9
9
  {...props}
10
10
  >
11
- <Path
11
+ <G
12
12
  stroke={props.color}
13
13
  strokeLinecap="round"
14
14
  strokeLinejoin="round"
15
15
  strokeWidth={1.5}
16
- d="M17.5 17.359a1.9 1.9 0 0 0 1.9-1.894 2 2 0 0 0-.591-1.419l-1.26-1.26V9.043A5.54 5.54 0 0 0 12 3.5v0a5.544 5.544 0 0 0-5.54 5.543v3.74l-1.26 1.26a2 2 0 0 0-.591 1.419v0a1.9 1.9 0 0 0 1.9 1.894zM10.521 20.5h2.957"
17
- />
16
+ clipPath="url(#Notification_svg__a)"
17
+ >
18
+ <Path d="M10 5a2 2 0 1 1 4 0 7 7 0 0 1 4 6v3a4 4 0 0 0 2 3H4a4 4 0 0 0 2-3v-3a7 7 0 0 1 4-6M9 17v1a3 3 0 0 0 6 0v-1" />
19
+ </G>
20
+ <Defs>
21
+ <ClipPath id="Notification_svg__a">
22
+ <Path fill={props.color} d="M0 0h24v24H0z" />
23
+ </ClipPath>
24
+ </Defs>
18
25
  </Svg>
19
26
  );
20
27
  export default SvgNotification;
@@ -0,0 +1,30 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgPipeline = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <Path
12
+ stroke={props.color}
13
+ strokeWidth={1.5}
14
+ d="M2 7a1 1 0 0 1 1-1h14.465a1 1 0 0 1 .832.445l3.333 5a1 1 0 0 1 0 1.11l-3.333 5a1 1 0 0 1-.832.445H3a1 1 0 0 1-1-1z"
15
+ />
16
+ <Path
17
+ stroke={props.color}
18
+ strokeLinecap="round"
19
+ strokeWidth={1.5}
20
+ d="m5.5 12.5 1.288 1.288a.3.3 0 0 0 .424 0L10 11M15 6l3.997 5.996a.01.01 0 0 1 0 .008L15 18"
21
+ />
22
+ <Path
23
+ stroke={props.color}
24
+ strokeLinecap="round"
25
+ strokeWidth={1.5}
26
+ d="m12 6 3.997 5.996a.01.01 0 0 1 0 .008L12 18"
27
+ />
28
+ </Svg>
29
+ );
30
+ export default SvgPipeline;
@@ -0,0 +1,27 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgRedirect = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ clipPath="url(#Redirect_svg__a)"
17
+ >
18
+ <Path d="M12 6H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6M11 13l9-9M15 4h5v5" />
19
+ </G>
20
+ <Defs>
21
+ <ClipPath id="Redirect_svg__a">
22
+ <Path fill={props.color} d="M0 0h24v24H0z" />
23
+ </ClipPath>
24
+ </Defs>
25
+ </Svg>
26
+ );
27
+ export default SvgRedirect;
@@ -0,0 +1,27 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgRedirectUrl = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ clipPath="url(#RedirectURL_svg__a)"
17
+ >
18
+ <Path d="M12 6H6a2 2 0 0 0-2 2v5m14-1v6a2 2 0 0 1-2 2h-2.5M11 13l9-9M15 4h5v5M4.536 18.183h4.243M8.426 15.707l.353-.026a2.5 2.5 0 0 1 0 5.002l-.353-.025M4.89 20.658l-.33.049a2.535 2.535 0 0 1-2.52-2.52 2.486 2.486 0 0 1 2.5-2.501l.35.021" />
19
+ </G>
20
+ <Defs>
21
+ <ClipPath id="RedirectURL_svg__a">
22
+ <Path fill={props.color} d="M0 0h24v24H0z" />
23
+ </ClipPath>
24
+ </Defs>
25
+ </Svg>
26
+ );
27
+ export default SvgRedirectUrl;