@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.
- package/dist/icons/AccessControl.js +28 -0
- package/dist/icons/AgentStatus.js +27 -0
- package/dist/icons/Approval.js +28 -0
- package/dist/icons/BusinessHour.js +28 -0
- package/dist/icons/CategoriesSettings.js +28 -0
- package/dist/icons/Category.js +12 -5
- package/dist/icons/ChatQuestions.js +28 -0
- package/dist/icons/CompanyInfo.js +28 -0
- package/dist/icons/CompanyTags.js +34 -0
- package/dist/icons/ContactField.js +34 -0
- package/dist/icons/ContactTags.js +41 -0
- package/dist/icons/CustomDomain.js +13 -5
- package/dist/icons/CustomField.js +33 -0
- package/dist/icons/Customize.js +15 -9
- package/dist/icons/DocumentationSync.js +30 -0
- package/dist/icons/Domain.js +28 -0
- package/dist/icons/EmailSync.js +28 -0
- package/dist/icons/EmailTemplates.js +31 -0
- package/dist/icons/EmailsBanned.js +32 -0
- package/dist/icons/ExcludedDomains.js +36 -0
- package/dist/icons/ExpenseCategories.js +27 -0
- package/dist/icons/FeatureSettings.js +29 -0
- package/dist/icons/Field.js +22 -0
- package/dist/icons/Group.js +15 -5
- package/dist/icons/HourFormat.js +29 -0
- package/dist/icons/ImportTimesheet.js +46 -0
- package/dist/icons/InfoRound.js +28 -0
- package/dist/icons/IntroPages.js +30 -0
- package/dist/icons/InvoiceSettings.js +27 -0
- package/dist/icons/IpRestriction.js +29 -0
- package/dist/icons/LockMessage.js +28 -0
- package/dist/icons/ManageTemplates.js +34 -0
- package/dist/icons/MappedField.js +35 -0
- package/dist/icons/MeetingLimit.js +27 -0
- package/dist/icons/MeetingReminder.js +27 -0
- package/dist/icons/MobileAndDesktopApps.js +28 -0
- package/dist/icons/NavLinks.js +26 -0
- package/dist/icons/Notification.js +11 -4
- package/dist/icons/Pipeline.js +30 -0
- package/dist/icons/Redirect.js +27 -0
- package/dist/icons/RedirectUrl.js +27 -0
- package/dist/icons/Score.js +27 -0
- package/dist/icons/Security.js +12 -21
- package/dist/icons/Seo.js +19 -12
- package/dist/icons/SlaPolicies.js +31 -0
- package/dist/icons/SmsTemplates.js +30 -0
- package/dist/icons/SplitPayment.js +37 -0
- package/dist/icons/StartWeekOn.js +28 -0
- package/dist/icons/Subdomain.js +15 -5
- package/dist/icons/Survey.js +31 -0
- package/dist/icons/Tabs.js +26 -0
- package/dist/icons/Tag.js +16 -9
- package/dist/icons/Tags.js +12 -11
- package/dist/icons/TaskOutcome.js +29 -0
- package/dist/icons/TaskType.js +29 -0
- package/dist/icons/Taxonomy.js +27 -0
- package/dist/icons/Templates.js +26 -0
- package/dist/icons/TicketField.js +30 -0
- package/dist/icons/TicketSettings.js +29 -0
- package/dist/icons/TicketTags.js +34 -0
- package/dist/icons/TimesheetVerifications.js +39 -0
- package/dist/icons/UserInfo.js +28 -0
- package/dist/icons/UserNotification.js +15 -5
- package/dist/icons/UserTags.js +27 -0
- package/dist/icons/VideoAccessControl.js +28 -0
- package/dist/icons/ViewSettings.js +29 -0
- package/dist/icons/Views.js +28 -0
- package/dist/icons/WidgetVisibility.js +28 -0
- package/dist/icons/Workflows.js +52 -0
- package/dist/icons/WorkspaceInfo.js +28 -0
- package/dist/icons/index.js +59 -0
- 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 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;
|
package/dist/icons/Security.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 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
|
-
<
|
|
11
|
+
<G
|
|
12
12
|
stroke={props.color}
|
|
13
13
|
strokeLinecap="round"
|
|
14
14
|
strokeLinejoin="round"
|
|
15
|
-
strokeWidth={
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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
|
-
<
|
|
11
|
+
<G
|
|
12
12
|
stroke={props.color}
|
|
13
13
|
strokeLinecap="round"
|
|
14
|
-
strokeLinejoin="round"
|
|
15
14
|
strokeWidth={1.5}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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;
|
package/dist/icons/Subdomain.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import 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
|
-
<
|
|
12
|
-
<Path
|
|
11
|
+
<G
|
|
13
12
|
stroke={props.color}
|
|
13
|
+
strokeLinecap="round"
|
|
14
|
+
strokeLinejoin="round"
|
|
14
15
|
strokeWidth={1.5}
|
|
15
|
-
|
|
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
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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;
|
package/dist/icons/Tags.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 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
|
-
<
|
|
11
|
+
<G
|
|
12
12
|
stroke={props.color}
|
|
13
13
|
strokeLinecap="round"
|
|
14
14
|
strokeLinejoin="round"
|
|
15
15
|
strokeWidth={1.5}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgTicketTags = (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="M6.5 7.5a1 1 0 1 0 2 0 1 1 0 0 0-2 0"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
stroke={props.color}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
strokeWidth={1.5}
|
|
23
|
+
d="m16.441 7.441-3.855-3.855A2 2 0 0 0 11.172 3H6a3 3 0 0 0-3 3v5.172a2 2 0 0 0 .586 1.414L10 19"
|
|
24
|
+
/>
|
|
25
|
+
<Path
|
|
26
|
+
stroke={props.color}
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
strokeWidth={1.5}
|
|
30
|
+
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"
|
|
31
|
+
/>
|
|
32
|
+
</Svg>
|
|
33
|
+
);
|
|
34
|
+
export default SvgTicketTags;
|