@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,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
|
-
<
|
|
11
|
+
<G
|
|
12
12
|
stroke={props.color}
|
|
13
13
|
strokeLinecap="round"
|
|
14
14
|
strokeLinejoin="round"
|
|
15
15
|
strokeWidth={1.5}
|
|
16
|
-
|
|
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,41 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path, Circle } from "react-native-svg";
|
|
3
|
+
const SvgPreventDuplicate = (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="M6.225 12.758h5.547m-5.547 2.589h5.547m-5.547 2.589h5.547m-.42 4.068H3.912c-.766 0-1.387-.621-1.387-1.387V10.47c0-.315.108-.62.304-.866l2.978-3.723c.263-.329.662-.52 1.083-.52h7.192c.766 0 1.387.62 1.387 1.387v5.841"
|
|
16
|
+
/>
|
|
17
|
+
<Path
|
|
18
|
+
stroke={props.color}
|
|
19
|
+
strokeLinecap="round"
|
|
20
|
+
strokeWidth={1.5}
|
|
21
|
+
d="M19 12.59V3.387C19 2.62 18.38 2 17.613 2h-7.192c-.421 0-.82.192-1.083.52l-.693.867"
|
|
22
|
+
/>
|
|
23
|
+
<Circle cx={6.351} cy={9.943} r={0.883} fill={props.color} />
|
|
24
|
+
<Circle cx={8.704} cy={9.943} r={0.883} fill={props.color} />
|
|
25
|
+
<Circle cx={11.057} cy={9.943} r={0.883} fill={props.color} />
|
|
26
|
+
<Circle
|
|
27
|
+
cx={18.5}
|
|
28
|
+
cy={19.21}
|
|
29
|
+
r={3.5}
|
|
30
|
+
stroke={props.color}
|
|
31
|
+
strokeWidth={1.5}
|
|
32
|
+
/>
|
|
33
|
+
<Path
|
|
34
|
+
stroke={props.color}
|
|
35
|
+
strokeLinecap="round"
|
|
36
|
+
strokeWidth={1.5}
|
|
37
|
+
d="m16.75 20.96 3.5-3.5"
|
|
38
|
+
/>
|
|
39
|
+
</Svg>
|
|
40
|
+
);
|
|
41
|
+
export default SvgPreventDuplicate;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgRecurringInvoice = (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-5.005"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
stroke={props.color}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
strokeWidth={1.5}
|
|
23
|
+
d="M11.25 11.75H9.375a1.125 1.125 0 1 0 0 2.25h.75a1.125 1.125 0 1 1 0 2.25H8.25M9.75 16.25V17m0-6v.75M22.006 5.932a4.559 4.559 0 0 0-8.725-1.126M13 2.554v2.252h2.251M13 7.057a4.56 4.56 0 0 0 8.724 1.126m.282 2.251V8.183h-2.252"
|
|
24
|
+
/>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgRecurringInvoice;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgRecurringMeeting = (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(#RecurringMeeting_svg__a)">
|
|
12
|
+
<Path fill="#0A0B0B" fillOpacity={0.01} d="M0 0h24v24H0z" />
|
|
13
|
+
<Path
|
|
14
|
+
stroke={props.color}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
strokeWidth={1.5}
|
|
18
|
+
d="M10 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4M14 2v4M6 2v4M2 10h16"
|
|
19
|
+
/>
|
|
20
|
+
<Path
|
|
21
|
+
stroke={props.color}
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
strokeWidth={1.5}
|
|
25
|
+
d="M22.006 16.932a4.559 4.559 0 0 0-8.725-1.126M13 13.554v2.252h2.251M13 18.057a4.56 4.56 0 0 0 8.724 1.126m.282 2.251v-2.251h-2.252"
|
|
26
|
+
/>
|
|
27
|
+
</G>
|
|
28
|
+
<Defs>
|
|
29
|
+
<ClipPath id="RecurringMeeting_svg__a">
|
|
30
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
31
|
+
</ClipPath>
|
|
32
|
+
</Defs>
|
|
33
|
+
</Svg>
|
|
34
|
+
);
|
|
35
|
+
export default SvgRecurringMeeting;
|
|
@@ -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;
|
|
@@ -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,29 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgSetup = (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(#Setup_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="M21 13v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7M7 20h10M9 16v4M15 16v4" />
|
|
19
|
+
<Path d="M18.932 1a.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 7.528c.82 0 1.485-.684 1.485-1.528S19.32 4.472 18.5 4.472 17.015 5.156 17.015 6s.665 1.528 1.485 1.528" />
|
|
21
|
+
</G>
|
|
22
|
+
<Defs>
|
|
23
|
+
<ClipPath id="Setup_svg__a">
|
|
24
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
25
|
+
</ClipPath>
|
|
26
|
+
</Defs>
|
|
27
|
+
</Svg>
|
|
28
|
+
);
|
|
29
|
+
export default SvgSetup;
|
|
@@ -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;
|