@bigbinary/neeto-icons-rn 1.20.22 → 1.20.24
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/ApiTemplates.js +30 -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/Configure.js +28 -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/Dependent.js +27 -0
- package/dist/icons/DocumentationSync.js +30 -0
- package/dist/icons/Domain.js +28 -0
- package/dist/icons/EditSchedule.js +27 -0
- package/dist/icons/EmailNotification.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/FlowChart.js +55 -0
- package/dist/icons/FormClosed.js +26 -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/Inactive.js +28 -0
- package/dist/icons/InfoRound.js +28 -0
- package/dist/icons/IntroPages.js +30 -0
- package/dist/icons/InvalidUrl.js +27 -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/ManageCalendar.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/PreventDuplicate.js +41 -0
- package/dist/icons/RecurringInvoice.js +27 -0
- package/dist/icons/RecurringMeeting.js +35 -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/Setup.js +29 -0
- 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/TaskTags.js +27 -0
- package/dist/icons/TaskType.js +29 -0
- package/dist/icons/Tax.js +27 -0
- package/dist/icons/TaxDetails.js +27 -0
- package/dist/icons/Taxonomy.js +27 -0
- package/dist/icons/Templates.js +26 -0
- package/dist/icons/ThankYouPage.js +34 -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/Web.js +29 -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 +78 -0
- package/package.json +1 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgEmailSync = (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(#EmailSync_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="M9 17H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v4" />
|
|
19
|
+
<Path d="m3 6 9 6 9-6M22.167 17.565a4.135 4.135 0 0 0-7.912-1.02M14 14.503v2.041h2.042M14 18.586a4.134 4.134 0 0 0 7.912 1.021m.255 2.042v-2.042h-2.042" />
|
|
20
|
+
</G>
|
|
21
|
+
<Defs>
|
|
22
|
+
<ClipPath id="EmailSync_svg__a">
|
|
23
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
24
|
+
</ClipPath>
|
|
25
|
+
</Defs>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
export default SvgEmailSync;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgEmailTemplates = (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(#EmailTemplates_svg__a)"
|
|
16
|
+
>
|
|
17
|
+
<Path d="M19 11V7.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 2h1" />
|
|
18
|
+
<Path
|
|
19
|
+
strokeLinejoin="round"
|
|
20
|
+
d="M9 8h6M9 11h6M11.286 15.143A1.143 1.143 0 0 1 12.429 14h8a1.143 1.143 0 0 1 1.143 1.143v5.714A1.143 1.143 0 0 1 20.429 22h-8a1.143 1.143 0 0 1-1.143-1.143z"
|
|
21
|
+
/>
|
|
22
|
+
<Path strokeLinejoin="round" d="m11.286 15.143 5.143 3.428 5.143-3.428" />
|
|
23
|
+
</G>
|
|
24
|
+
<Defs>
|
|
25
|
+
<ClipPath id="EmailTemplates_svg__a">
|
|
26
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
27
|
+
</ClipPath>
|
|
28
|
+
</Defs>
|
|
29
|
+
</Svg>
|
|
30
|
+
);
|
|
31
|
+
export default SvgEmailTemplates;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Circle, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgEmailsBanned = (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
|
+
strokeWidth={1.5}
|
|
14
|
+
clipPath="url(#EmailsBanned_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
strokeLinecap="round"
|
|
18
|
+
strokeLinejoin="round"
|
|
19
|
+
d="M12 18H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3.5"
|
|
20
|
+
/>
|
|
21
|
+
<Path strokeLinecap="round" strokeLinejoin="round" d="m2 6 9 6 9-6" />
|
|
22
|
+
<Circle cx={18} cy={16} r={4} />
|
|
23
|
+
<Path strokeLinecap="round" d="m16 18 4-4" />
|
|
24
|
+
</G>
|
|
25
|
+
<Defs>
|
|
26
|
+
<ClipPath id="EmailsBanned_svg__a">
|
|
27
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
28
|
+
</ClipPath>
|
|
29
|
+
</Defs>
|
|
30
|
+
</Svg>
|
|
31
|
+
);
|
|
32
|
+
export default SvgEmailsBanned;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Circle, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgExcludedDomains = (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
|
+
strokeWidth={1.5}
|
|
14
|
+
clipPath="url(#ExcludedDomains_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
strokeLinecap="round"
|
|
18
|
+
strokeLinejoin="round"
|
|
19
|
+
d="M20.603 9.355a9 9 0 1 0-9.458 11.604M3.6 9h16.8M3.6 15h4.9"
|
|
20
|
+
/>
|
|
21
|
+
<Path
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
d="M11.5 3a17 17 0 0 0 0 18M12.5 3a16.94 16.94 0 0 1 2.578 9"
|
|
25
|
+
/>
|
|
26
|
+
<Circle cx={18} cy={18} r={4} />
|
|
27
|
+
<Path strokeLinecap="round" d="M16.5 18h3" />
|
|
28
|
+
</G>
|
|
29
|
+
<Defs>
|
|
30
|
+
<ClipPath id="ExcludedDomains_svg__a">
|
|
31
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
32
|
+
</ClipPath>
|
|
33
|
+
</Defs>
|
|
34
|
+
</Svg>
|
|
35
|
+
);
|
|
36
|
+
export default SvgExcludedDomains;
|
|
@@ -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;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Rect, Path } from "react-native-svg";
|
|
3
|
+
const SvgFlowChart = (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
|
+
<Rect
|
|
12
|
+
width={8}
|
|
13
|
+
height={5}
|
|
14
|
+
x={8}
|
|
15
|
+
y={2}
|
|
16
|
+
stroke={props.color}
|
|
17
|
+
strokeWidth={1.5}
|
|
18
|
+
rx={0.5}
|
|
19
|
+
/>
|
|
20
|
+
<Rect
|
|
21
|
+
width={8}
|
|
22
|
+
height={5}
|
|
23
|
+
x={2}
|
|
24
|
+
y={17}
|
|
25
|
+
stroke={props.color}
|
|
26
|
+
strokeWidth={1.5}
|
|
27
|
+
rx={0.5}
|
|
28
|
+
/>
|
|
29
|
+
<Rect
|
|
30
|
+
width={8}
|
|
31
|
+
height={5}
|
|
32
|
+
x={14}
|
|
33
|
+
y={17}
|
|
34
|
+
stroke={props.color}
|
|
35
|
+
strokeWidth={1.5}
|
|
36
|
+
rx={0.5}
|
|
37
|
+
/>
|
|
38
|
+
<Rect
|
|
39
|
+
width={4}
|
|
40
|
+
height={4}
|
|
41
|
+
x={9.15}
|
|
42
|
+
y={12.536}
|
|
43
|
+
stroke={props.color}
|
|
44
|
+
strokeWidth={1.5}
|
|
45
|
+
rx={0.5}
|
|
46
|
+
transform="rotate(-45 9.15 12.536)"
|
|
47
|
+
/>
|
|
48
|
+
<Path
|
|
49
|
+
stroke={props.color}
|
|
50
|
+
strokeWidth={1.5}
|
|
51
|
+
d="M15 12.5h2.5a.5.5 0 0 1 .5.5v4M9 12.5H6.5a.5.5 0 0 0-.5.5v4M12 7v3"
|
|
52
|
+
/>
|
|
53
|
+
</Svg>
|
|
54
|
+
);
|
|
55
|
+
export default SvgFlowChart;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path, Circle } from "react-native-svg";
|
|
3
|
+
const SvgFormClosed = (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="M7 8.02v.01m2-.02v.01M11 8v.01M7 11h6m-6 2.8h6m-6 2.8h4m0 4.4H4.5A1.5 1.5 0 0 1 3 19.5V8.526c0-.34.116-.67.329-.937l3.22-4.026A1.5 1.5 0 0 1 7.722 3H15.5A1.5 1.5 0 0 1 17 4.5V12"
|
|
16
|
+
/>
|
|
17
|
+
<Circle cx={18} cy={19} r={4} stroke={props.color} strokeWidth={1.5} />
|
|
18
|
+
<Path
|
|
19
|
+
stroke={props.color}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeWidth={1.5}
|
|
22
|
+
d="m16 21 4-4"
|
|
23
|
+
/>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgFormClosed;
|
package/dist/icons/Group.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 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
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
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 SvgInactive = (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(#Inactive_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="M9 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4M14 2v4M6 2v4M2 10h16" />
|
|
19
|
+
<Path d="M15.999 13.004h.175a3.333 3.333 0 0 0 3.52 5.531A4 4 0 1 1 15.999 13z" />
|
|
20
|
+
</G>
|
|
21
|
+
<Defs>
|
|
22
|
+
<ClipPath id="Inactive_svg__a">
|
|
23
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
24
|
+
</ClipPath>
|
|
25
|
+
</Defs>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
export default SvgInactive;
|
|
@@ -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, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgInvalidUrl = (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(#InvalidUrl_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="M10.886 7.627v3.554M11.5 17.397H3.682a1.702 1.702 0 0 1-1.454-2.551L9.431 2.82A1.7 1.7 0 0 1 10.886 2a1.7 1.7 0 0 1 1.454.82l4.9 8.18M10.886 13.846h.009M16.131 18.869a2.395 2.395 0 0 0 3.422 0l2.738-2.738a2.42 2.42 0 0 0-3.422-3.422l-.342.342m.342 3.08a2.395 2.395 0 0 0-3.422 0l-2.738 2.738a2.42 2.42 0 0 0 3.422 3.422l.342-.342" />
|
|
19
|
+
</G>
|
|
20
|
+
<Defs>
|
|
21
|
+
<ClipPath id="InvalidUrl_svg__a">
|
|
22
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
23
|
+
</ClipPath>
|
|
24
|
+
</Defs>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgInvalidUrl;
|
|
@@ -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,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgManageCalendar = (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(#ManageCalendar_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="M11 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4M14 2v4M6 2v4M2 10h16M18.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" />
|
|
19
|
+
<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" />
|
|
20
|
+
</G>
|
|
21
|
+
<Defs>
|
|
22
|
+
<ClipPath id="ManageCalendar_svg__a">
|
|
23
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
24
|
+
</ClipPath>
|
|
25
|
+
</Defs>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
export default SvgManageCalendar;
|