@bigbinary/neeto-icons-rn 1.20.21 → 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 (73) 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/Minimize.js +27 -0
  37. package/dist/icons/MobileAndDesktopApps.js +28 -0
  38. package/dist/icons/NavLinks.js +26 -0
  39. package/dist/icons/Notification.js +11 -4
  40. package/dist/icons/Pipeline.js +30 -0
  41. package/dist/icons/Redirect.js +27 -0
  42. package/dist/icons/RedirectUrl.js +27 -0
  43. package/dist/icons/Score.js +27 -0
  44. package/dist/icons/Security.js +12 -21
  45. package/dist/icons/Seo.js +19 -12
  46. package/dist/icons/SlaPolicies.js +31 -0
  47. package/dist/icons/SmsTemplates.js +30 -0
  48. package/dist/icons/SplitPayment.js +37 -0
  49. package/dist/icons/StartWeekOn.js +28 -0
  50. package/dist/icons/Subdomain.js +15 -5
  51. package/dist/icons/Survey.js +31 -0
  52. package/dist/icons/Tabs.js +26 -0
  53. package/dist/icons/Tag.js +16 -9
  54. package/dist/icons/Tags.js +12 -11
  55. package/dist/icons/TaskOutcome.js +29 -0
  56. package/dist/icons/TaskType.js +29 -0
  57. package/dist/icons/Taxonomy.js +27 -0
  58. package/dist/icons/Templates.js +26 -0
  59. package/dist/icons/TicketField.js +30 -0
  60. package/dist/icons/TicketSettings.js +29 -0
  61. package/dist/icons/TicketTags.js +34 -0
  62. package/dist/icons/TimesheetVerifications.js +39 -0
  63. package/dist/icons/UserInfo.js +28 -0
  64. package/dist/icons/UserNotification.js +15 -5
  65. package/dist/icons/UserTags.js +27 -0
  66. package/dist/icons/VideoAccessControl.js +28 -0
  67. package/dist/icons/ViewSettings.js +29 -0
  68. package/dist/icons/Views.js +28 -0
  69. package/dist/icons/WidgetVisibility.js +28 -0
  70. package/dist/icons/Workflows.js +52 -0
  71. package/dist/icons/WorkspaceInfo.js +28 -0
  72. package/dist/icons/index.js +60 -0
  73. 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 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;
@@ -0,0 +1,27 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgScore = (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(#Score_svg__a)"
17
+ >
18
+ <Path d="M8 21h8M12 17v4M7 4h10M17 4v8a5 5 0 1 1-10 0V4M3 9a2 2 0 1 0 4 0 2 2 0 0 0-4 0M17 9a2 2 0 1 0 4 0 2 2 0 0 0-4 0" />
19
+ </G>
20
+ <Defs>
21
+ <ClipPath id="Score_svg__a">
22
+ <Path fill={props.color} d="M0 0h24v24H0z" />
23
+ </ClipPath>
24
+ </Defs>
25
+ </Svg>
26
+ );
27
+ export default SvgScore;
@@ -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 SvgSecurity = (props) => (
4
4
  <Svg
5
5
  xmlns="http://www.w3.org/2000/svg"
@@ -8,29 +8,20 @@ const SvgSecurity = (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
- strokeWidth={2}
16
- d="M18.035 14.834v-1.797a2.037 2.037 0 0 0-2.036-2.036v0a2.037 2.037 0 0 0-2.036 2.036v1.797"
17
- />
18
- <Path
19
- stroke={props.color}
20
- strokeLinecap="round"
21
- strokeLinejoin="round"
22
- strokeWidth={2}
23
- d="M18.332 14.836h-4.667c-.736 0-1.333.597-1.333 1.333v2.832c0 .736.597 1.334 1.333 1.334h4.667c.736 0 1.333-.598 1.333-1.334V16.17c0-.736-.597-1.333-1.333-1.333"
24
- clipRule="evenodd"
25
- />
26
- <Path
27
- stroke={props.color}
28
- strokeLinecap="round"
29
- strokeLinejoin="round"
30
- strokeWidth={2}
31
- d="M26.665 14.99c0 5.824-4.209 11.283-9.973 12.915-.45.128-.936.128-1.387 0-5.764-1.631-9.973-7.091-9.973-12.915V9.62c0-1.083.655-2.06 1.657-2.469l6.486-2.653a6.66 6.66 0 0 1 5.049 0l6.485 2.653a2.67 2.67 0 0 1 1.656 2.468z"
32
- clipRule="evenodd"
33
- />
15
+ strokeWidth={1.5}
16
+ clipPath="url(#Security_svg__a)"
17
+ >
18
+ <Path d="M5 13a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2zM8 11V7a4 4 0 0 1 8 0v4" />
19
+ </G>
20
+ <Defs>
21
+ <ClipPath id="Security_svg__a">
22
+ <Path fill={props.color} d="M0 0h24v24H0z" />
23
+ </ClipPath>
24
+ </Defs>
34
25
  </Svg>
35
26
  );
36
27
  export default SvgSecurity;
package/dist/icons/Seo.js CHANGED
@@ -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 SvgSeo = (props) => (
4
4
  <Svg
5
5
  xmlns="http://www.w3.org/2000/svg"
@@ -8,20 +8,27 @@ const SvgSeo = (props) => (
8
8
  fill="none"
9
9
  {...props}
10
10
  >
11
- <Path
11
+ <G
12
12
  stroke={props.color}
13
13
  strokeLinecap="round"
14
- strokeLinejoin="round"
15
14
  strokeWidth={1.5}
16
- d="m15.456 9.757-3.419 3.42-2.28-2.28-2.279 2.28"
17
- />
18
- <Path
19
- stroke={props.color}
20
- strokeLinecap="round"
21
- strokeLinejoin="round"
22
- strokeWidth={1.5}
23
- d="m20 20-3.25-3.25m-.003-10.563a7.467 7.467 0 1 1-10.56 10.56 7.467 7.467 0 0 1 10.56-10.56"
24
- />
15
+ clipPath="url(#Seo_svg__a)"
16
+ >
17
+ <Path
18
+ strokeLinejoin="round"
19
+ d="M20 10V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4M7 7h.01M9.01 7h.01M11.02 7h.01"
20
+ />
21
+ <Path
22
+ strokeLinejoin="round"
23
+ d="M19.348 19.367 23 23m-3.616-10.57a4.867 4.867 0 0 1 0 6.91 4.93 4.93 0 0 1-6.946 0 4.867 4.867 0 0 1 0-6.91 4.93 4.93 0 0 1 6.946 0"
24
+ />
25
+ <Path d="m14 17 .966-1.207a.3.3 0 0 1 .468 0l.732.914a.3.3 0 0 0 .468 0L18 15" />
26
+ </G>
27
+ <Defs>
28
+ <ClipPath id="Seo_svg__a">
29
+ <Path fill={props.color} d="M0 0h24v24H0z" />
30
+ </ClipPath>
31
+ </Defs>
25
32
  </Svg>
26
33
  );
27
34
  export default SvgSeo;
@@ -0,0 +1,31 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgSlaPolicies = (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 clipPath="url(#SlaPolicies_svg__a)">
12
+ <Path
13
+ stroke={props.color}
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ strokeWidth={1.5}
17
+ d="M17 13a7 7 0 1 0-12.676 4.097M12.5 10.5 10 13M15 8l1-1M12 3H8"
18
+ />
19
+ <Path
20
+ fill={props.color}
21
+ d="M9.678 21.62c-1.259 0-2.019-.474-2.26-1.073a.9.9 0 0 1-.076-.366c0-.37.265-.619.639-.619.285 0 .478.1.667.39.197.362.587.515 1.054.515.575 0 .949-.258.949-.611 0-.322-.246-.487-.933-.62l-.6-.112c-1.153-.217-1.756-.784-1.756-1.669 0-1.117.969-1.837 2.304-1.837 1.11 0 1.921.426 2.203 1.162.04.1.06.197.06.317 0 .342-.25.571-.619.575-.322 0-.523-.116-.696-.398-.189-.361-.51-.502-.936-.502-.535 0-.849.241-.849.583 0 .305.262.474.893.595l.595.112c1.238.238 1.801.74 1.801 1.653 0 1.166-.912 1.906-2.44 1.906M13.541 21.52c-.466 0-.74-.281-.74-.772v-4.35c0-.49.274-.768.74-.768.467 0 .736.277.736.768v3.932h1.817c.394 0 .656.217.656.595s-.258.595-.656.595zM17.932 21.609c-.467 0-.752-.266-.752-.704 0-.125.04-.306.105-.483l1.43-3.932c.214-.59.572-.86 1.147-.86.607 0 .96.257 1.182.86l1.443 3.932c.068.19.097.326.097.479 0 .414-.31.707-.74.707-.426 0-.648-.192-.776-.667l-.197-.643h-1.986l-.197.619c-.141.49-.362.691-.756.691m1.246-2.425h1.371l-.68-2.235h-.032z"
22
+ />
23
+ </G>
24
+ <Defs>
25
+ <ClipPath id="SlaPolicies_svg__a">
26
+ <Path fill={props.color} d="M0 0h24v24H0z" />
27
+ </ClipPath>
28
+ </Defs>
29
+ </Svg>
30
+ );
31
+ export default SvgSlaPolicies;
@@ -0,0 +1,30 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgSmsTemplates = (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(#SmsTemplates_svg__a)"
16
+ >
17
+ <Path d="M9 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 11h6M14.618 16.618h4.188M14.618 18.712h2.6M19.5 14c.398 0 .78.167 1.06.465.282.298.44.702.44 1.123v4.236c0 .42-.158.825-.44 1.123a1.46 1.46 0 0 1-1.06.465H17L14.5 23v-1.588h-1a1.46 1.46 0 0 1-1.06-.465 1.64 1.64 0 0 1-.44-1.123v-4.236c0-.421.158-.825.44-1.123A1.46 1.46 0 0 1 13.5 14z"
21
+ />
22
+ </G>
23
+ <Defs>
24
+ <ClipPath id="SmsTemplates_svg__a">
25
+ <Path fill={props.color} d="M0 0h24v24H0z" />
26
+ </ClipPath>
27
+ </Defs>
28
+ </Svg>
29
+ );
30
+ export default SvgSmsTemplates;
@@ -0,0 +1,37 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgSplitPayment = (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
+ clipPath="url(#SplitPayment_svg__a)"
16
+ >
17
+ <Path
18
+ strokeWidth={1.5}
19
+ d="M19 10.5V6.833c0-.486-.199-.952-.553-1.296A1.92 1.92 0 0 0 17.11 5H3.89c-.501 0-.982.193-1.336.537S2 6.347 2 6.833v7.334c0 .486.199.952.553 1.296S3.388 16 3.89 16H12"
20
+ />
21
+ <Path
22
+ strokeWidth={1.25}
23
+ d="M11.75 8.625h-1.562a.937.937 0 1 0 0 1.875h.624a.938.938 0 0 1 0 1.875H9.25M10.5 12.375V13m0-5v.625"
24
+ />
25
+ <Path
26
+ strokeWidth={1.5}
27
+ d="M14 13.744a1.744 1.744 0 1 0 3.488 0 1.744 1.744 0 0 0-3.488 0M14 19.557a1.744 1.744 0 1 0 3.488 0 1.744 1.744 0 0 0-3.488 0M17.255 14.674l6.046 6.046M17.255 18.627l6.046-6.046"
28
+ />
29
+ </G>
30
+ <Defs>
31
+ <ClipPath id="SplitPayment_svg__a">
32
+ <Path fill={props.color} d="M0 0h24v24H0z" />
33
+ </ClipPath>
34
+ </Defs>
35
+ </Svg>
36
+ );
37
+ export default SvgSplitPayment;
@@ -0,0 +1,28 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgStartWeekOn = (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(#StartWeekOn_svg__a)"
17
+ >
18
+ <Path d="M4 7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2zM16 3v4M8 3v4M4 11h16" />
19
+ <Path d="M13 14h2v2h-2z" />
20
+ </G>
21
+ <Defs>
22
+ <ClipPath id="StartWeekOn_svg__a">
23
+ <Path fill={props.color} d="M0 0h24v24H0z" />
24
+ </ClipPath>
25
+ </Defs>
26
+ </Svg>
27
+ );
28
+ export default SvgStartWeekOn;
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import Svg, { Circle, Path } from "react-native-svg";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
3
  const SvgSubdomain = (props) => (
4
4
  <Svg
5
5
  xmlns="http://www.w3.org/2000/svg"
@@ -8,12 +8,22 @@ const SvgSubdomain = (props) => (
8
8
  fill="none"
9
9
  {...props}
10
10
  >
11
- <Circle cx={12} cy={12} r={8.25} stroke={props.color} strokeWidth={1.5} />
12
- <Path
11
+ <G
13
12
  stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
14
15
  strokeWidth={1.5}
15
- d="M15.25 12c0 2.406-.435 4.547-1.107 6.06-.336.756-.718 1.323-1.103 1.69-.382.363-.732.5-1.04.5s-.658-.137-1.04-.5c-.385-.367-.767-.934-1.103-1.69C9.185 16.546 8.75 14.405 8.75 12s.435-4.547 1.107-6.06c.336-.756.718-1.323 1.103-1.69.382-.363.732-.5 1.04-.5s.658.137 1.04.5c.385.367.767.934 1.103 1.69.672 1.513 1.107 3.655 1.107 6.06ZM4 12h16"
16
- />
16
+ clipPath="url(#Subdomain_svg__a)"
17
+ >
18
+ <Path d="M6.144 18.032a8.334 8.334 0 1 1 10.95-10.736m0 0 .076.204zM1.556 7.556H17.11M1.556 13.111h5.168" />
19
+ <Path d="M8.87 2a15.74 15.74 0 0 0-2.159 11M9.796 2a15.7 15.7 0 0 1 2.088 5.279M8.889 16.556a6.556 6.556 0 1 0 13.112 0 6.556 6.556 0 0 0-13.112 0M9.326 14.37h12.237M9.326 18.74h12.237" />
20
+ <Path d="M15.08 10a12.38 12.38 0 0 0 0 13.111M15.809 10a12.38 12.38 0 0 1 0 13.111" />
21
+ </G>
22
+ <Defs>
23
+ <ClipPath id="Subdomain_svg__a">
24
+ <Path fill={props.color} d="M0 0h24v24H0z" />
25
+ </ClipPath>
26
+ </Defs>
17
27
  </Svg>
18
28
  );
19
29
  export default SvgSubdomain;
@@ -0,0 +1,31 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgSurvey = (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(#Survey_svg__a)"
16
+ >
17
+ <Path d="M10 4H5.714A2.714 2.714 0 0 0 3 6.714v8.572C3 16.785 4.215 18 5.714 18h1.802c.302 0 .585.151.753.403l1.315 1.973a.5.5 0 0 0 .832 0l1.315-1.973a.9.9 0 0 1 .753-.403h5.802C19.785 18 21 16.785 21 15.286V12" />
18
+ <Path
19
+ strokeLinejoin="round"
20
+ d="m16.5 8.965-1.81.995a.31.31 0 0 1-.341-.026.34.34 0 0 1-.111-.147.36.36 0 0 1-.02-.185l.345-2.11L13.099 6a.356.356 0 0 1 .017-.506.3.3 0 0 1 .164-.076l2.023-.308.905-1.919a.34.34 0 0 1 .12-.139.32.32 0 0 1 .345 0 .34.34 0 0 1 .12.14l.905 1.918 2.023.308c.06.009.117.035.163.076a.357.357 0 0 1 .018.505l-1.464 1.494.345 2.109a.36.36 0 0 1-.02.186.34.34 0 0 1-.11.148.32.32 0 0 1-.342.025z"
21
+ />
22
+ <Path d="M6 11h3M6 14h7" />
23
+ </G>
24
+ <Defs>
25
+ <ClipPath id="Survey_svg__a">
26
+ <Path fill={props.color} d="M0 0h24v24H0z" />
27
+ </ClipPath>
28
+ </Defs>
29
+ </Svg>
30
+ );
31
+ export default SvgSurvey;
@@ -0,0 +1,26 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgTabs = (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(#Tabs_svg__a)">
12
+ <Path
13
+ strokeLinecap="round"
14
+ d="M19 3H5a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2Z"
15
+ />
16
+ <Path d="M11 3v17" />
17
+ <Path strokeLinecap="round" d="M6 6h2M6 9h2M6 12h2" />
18
+ </G>
19
+ <Defs>
20
+ <ClipPath id="Tabs_svg__a">
21
+ <Path fill={props.color} d="M0 0h24v24H0z" />
22
+ </ClipPath>
23
+ </Defs>
24
+ </Svg>
25
+ );
26
+ export default SvgTabs;
package/dist/icons/Tag.js CHANGED
@@ -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 SvgTag = (props) => (
4
4
  <Svg
5
5
  xmlns="http://www.w3.org/2000/svg"
@@ -8,14 +8,21 @@ const SvgTag = (props) => (
8
8
  fill="none"
9
9
  {...props}
10
10
  >
11
- <Path
12
- fill={props.color}
13
- d="M18.52 30a3 3 0 0 1-2.12-.88L2.88 15.61A3 3 0 0 1 2 13.49V5a3 3 0 0 1 3-3h8.49a3 3 0 0 1 2.12.88l13.51 13.51a3 3 0 0 1 0 4.25l-8.48 8.48a3 3 0 0 1-2.12.88M5 4a1 1 0 0 0-1 1v8.49a1 1 0 0 0 .3.71l13.51 13.51a1 1 0 0 0 1.41 0l8.49-8.49a1 1 0 0 0 0-1.41L14.2 4.3a1 1 0 0 0-.71-.3z"
14
- />
15
- <Path
16
- fill={props.color}
17
- d="M10 14a4 4 0 1 1 0-8 4 4 0 0 1 0 8m0-6a2 2 0 1 0 0 4 2 2 0 0 0 0-4"
18
- />
11
+ <G
12
+ stroke={props.color}
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ clipPath="url(#Tag_svg__a)"
17
+ >
18
+ <Path d="M6.5 7.5a1 1 0 1 0 2 0 1 1 0 0 0-2 0" />
19
+ <Path d="M3 6v5.172a2 2 0 0 0 .586 1.414l7.71 7.71a2.41 2.41 0 0 0 3.408 0l5.592-5.592a2.41 2.41 0 0 0 0-3.408l-7.71-7.71A2 2 0 0 0 11.172 3H6a3 3 0 0 0-3 3" />
20
+ </G>
21
+ <Defs>
22
+ <ClipPath id="Tag_svg__a">
23
+ <Path fill={props.color} d="M0 0h24v24H0z" />
24
+ </ClipPath>
25
+ </Defs>
19
26
  </Svg>
20
27
  );
21
28
  export default SvgTag;
@@ -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 SvgTags = (props) => (
4
4
  <Svg
5
5
  xmlns="http://www.w3.org/2000/svg"
@@ -8,20 +8,21 @@ const SvgTags = (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="M14.834 10.146a.367.367 0 1 0 .52.519.367.367 0 0 0-.52-.52"
17
- />
18
- <Path
19
- stroke={props.color}
20
- strokeLinecap="round"
21
- strokeLinejoin="round"
22
- strokeWidth={1.5}
23
- d="m4.5 10 6.506-6.423A2 2 0 0 1 12.411 3H16.5m-4.21 3.29L5.08 13.5a1.977 1.977 0 0 0 0 2.796l4.124 4.124a1.977 1.977 0 0 0 2.796 0l7.21-7.21a1 1 0 0 0 .29-.699V6.989A.99.99 0 0 0 18.511 6h-5.523a.98.98 0 0 0-.698.29"
24
- />
16
+ clipPath="url(#Tags_svg__a)"
17
+ >
18
+ <Path d="M3 8v4.172a2 2 0 0 0 .586 1.414l5.71 5.71a2.41 2.41 0 0 0 3.408 0l3.592-3.592a2.41 2.41 0 0 0 0-3.408l-5.71-5.71A2 2 0 0 0 9.172 6H5a2 2 0 0 0-2 2" />
19
+ <Path d="m18 19 1.592-1.592a4.82 4.82 0 0 0 0-6.816L15 6M7 10h-.01" />
20
+ </G>
21
+ <Defs>
22
+ <ClipPath id="Tags_svg__a">
23
+ <Path fill={props.color} d="M0 0h24v24H0z" />
24
+ </ClipPath>
25
+ </Defs>
25
26
  </Svg>
26
27
  );
27
28
  export default SvgTags;
@@ -0,0 +1,29 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgTaskOutcome = (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(#TaskOutcome_svg__a)"
17
+ >
18
+ <Path d="M8 5H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h3m9-13V7a2 2 0 0 0-2-2h-2" />
19
+ <Path d="M8 5a2 2 0 0 1 2-2h2a2 2 0 0 1 0 4h-2a2 2 0 0 1-2-2M13.857 17.429a.714.714 0 1 0 1.429 0 .714.714 0 0 0-1.429 0" />
20
+ <Path d="M14.571 13.857a3.572 3.572 0 1 0 3.572 3.572M16.714 13.143v2.143h2.143L21 13.143h-2.143V11zM16.714 15.286l-2.143 2.143" />
21
+ </G>
22
+ <Defs>
23
+ <ClipPath id="TaskOutcome_svg__a">
24
+ <Path fill={props.color} d="M0 0h24v24H0z" />
25
+ </ClipPath>
26
+ </Defs>
27
+ </Svg>
28
+ );
29
+ export default SvgTaskOutcome;
@@ -0,0 +1,29 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgTaskType = (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(#TaskType_svg__a)"
17
+ >
18
+ <Path d="M7 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h5m7-10V6a2 2 0 0 0-2-2h-2" />
19
+ <Path d="M7 4a2 2 0 0 1 2-2h2a2 2 0 0 1 0 4H9a2 2 0 0 1-2-2M9 9h5M9 12h4M6 9v.01M6 12v.01M17.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="M17.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="TaskType_svg__a">
24
+ <Path fill={props.color} d="M0 0h24v24H0z" />
25
+ </ClipPath>
26
+ </Defs>
27
+ </Svg>
28
+ );
29
+ export default SvgTaskType;
@@ -0,0 +1,27 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgTaxonomy = (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(#Taxonomy_svg__a)"
17
+ >
18
+ <Path d="M9 6h11M12 12h8M15 18h5M5 6v.01M8 12v.01M11 18v.01" />
19
+ </G>
20
+ <Defs>
21
+ <ClipPath id="Taxonomy_svg__a">
22
+ <Path fill={props.color} d="M0 0h24v24H0z" />
23
+ </ClipPath>
24
+ </Defs>
25
+ </Svg>
26
+ );
27
+ export default SvgTaxonomy;
@@ -0,0 +1,26 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgTemplates = (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(#Templates_svg__a)">
12
+ <Path d="M7 21h10a2 2 0 0 0 2-2V7.828a2 2 0 0 0-.586-1.414l-2.828-2.828A2 2 0 0 0 14.172 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2Z" />
13
+ <Path
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ d="M9 8h6M9 11h6M9 14h6M9 17h6"
17
+ />
18
+ </G>
19
+ <Defs>
20
+ <ClipPath id="Templates_svg__a">
21
+ <Path fill={props.color} d="M0 0h24v24H0z" />
22
+ </ClipPath>
23
+ </Defs>
24
+ </Svg>
25
+ );
26
+ export default SvgTemplates;
@@ -0,0 +1,30 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgTicketField = (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(#TicketField_svg__a)"
16
+ >
17
+ <Path
18
+ strokeLinejoin="round"
19
+ d="M16.857 14.667h2.893m-2.893 2.666h2.893m-4.5-2.666v.007m0 2.653v.007M13 20.667v-9.334c0-.353.136-.692.377-.943.24-.25.568-.39.909-.39h1.928c0 .354.136.693.377.943s.568.39.909.39.668-.14.91-.39c.24-.25.376-.59.376-.943h1.928c.341 0 .668.14.91.39.24.25.376.59.376.943v9.334c0 .353-.136.692-.377.942-.24.25-.568.391-.909.391h-1.928c0-.354-.136-.693-.377-.943a1.26 1.26 0 0 0-.909-.39c-.341 0-.668.14-.91.39-.24.25-.376.59-.376.943h-1.928c-.341 0-.668-.14-.91-.39a1.36 1.36 0 0 1-.376-.943"
20
+ />
21
+ <Path d="M20 8V7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4M7 7v4" />
22
+ </G>
23
+ <Defs>
24
+ <ClipPath id="TicketField_svg__a">
25
+ <Path fill={props.color} d="M0 0h24v24H0z" />
26
+ </ClipPath>
27
+ </Defs>
28
+ </Svg>
29
+ );
30
+ export default SvgTicketField;
@@ -0,0 +1,29 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgTicketSettings = (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(#TicketSettings_svg__a)"
17
+ >
18
+ <Path d="M15 21h-3c0-.56-.21-1.097-.586-1.493A1.95 1.95 0 0 0 10 18.89c-.53 0-1.04.222-1.414.618A2.17 2.17 0 0 0 8 21H5c-.53 0-1.04-.222-1.414-.618A2.17 2.17 0 0 1 3 18.889V4.11c0-.56.21-1.097.586-1.493A1.95 1.95 0 0 1 5 2h3c0 .56.21 1.097.586 1.493.375.396.884.618 1.414.618s1.04-.222 1.414-.618C11.79 3.097 12 2.56 12 2h3c.53 0 1.04.222 1.414.618.375.396.586.933.586 1.493V8M9 9.389h4.5M9 13.61h1.5m-4-4.222v.01m0 4.202v.01" />
19
+ <Path d="M17.932 10a.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 16.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="TicketSettings_svg__a">
24
+ <Path fill={props.color} d="M0 0h24v24H0z" />
25
+ </ClipPath>
26
+ </Defs>
27
+ </Svg>
28
+ );
29
+ export default SvgTicketSettings;