@bigbinary/neeto-icons-rn 1.20.23 → 1.20.25
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/ApiTemplates.js +30 -0
- package/dist/icons/Configure.js +28 -0
- package/dist/icons/Dependent.js +27 -0
- package/dist/icons/EditSchedule.js +27 -0
- package/dist/icons/EmailNotification.js +28 -0
- package/dist/icons/FlowChart.js +55 -0
- package/dist/icons/FormClosed.js +26 -0
- package/dist/icons/Inactive.js +28 -0
- package/dist/icons/InvalidUrl.js +27 -0
- package/dist/icons/ManageCalendar.js +28 -0
- package/dist/icons/MarginAll.js +22 -0
- package/dist/icons/MarginBottom.js +26 -0
- package/dist/icons/MarginLeft.js +26 -0
- package/dist/icons/MarginRight.js +26 -0
- package/dist/icons/MarginTop.js +22 -0
- package/dist/icons/MarginX.js +22 -0
- package/dist/icons/MarginY.js +22 -0
- package/dist/icons/PaddingAll.js +26 -0
- package/dist/icons/PaddingBottom.js +26 -0
- package/dist/icons/PaddingLeft.js +26 -0
- package/dist/icons/PaddingRight.js +26 -0
- package/dist/icons/PaddingTop.js +26 -0
- package/dist/icons/PaddingX.js +22 -0
- package/dist/icons/PaddingY.js +22 -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/Setup.js +29 -0
- package/dist/icons/TaskTags.js +27 -0
- package/dist/icons/Tax.js +27 -0
- package/dist/icons/TaxDetails.js +27 -0
- package/dist/icons/ThankYouPage.js +34 -0
- package/dist/icons/Web.js +29 -0
- package/dist/icons/index.js +33 -0
- package/package.json +1 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgApiTemplates = (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(#ApiTemplates_svg__a)"
|
|
16
|
+
>
|
|
17
|
+
<Path d="M11 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.833 14a.917.917 0 0 0-.916.917v1.375c0 .364-.097.714-.269.972s-.405.403-.648.403c.243 0 .476.144.648.402s.269.608.269.973v1.375a.916.916 0 0 0 .916.916M20.417 14a.917.917 0 0 1 .916.917v1.375c0 .364.097.714.269.972s.405.403.648.403c-.243 0-.476.144-.648.402s-.269.608-.269.973v1.375a.916.916 0 0 1-.916.916"
|
|
21
|
+
/>
|
|
22
|
+
</G>
|
|
23
|
+
<Defs>
|
|
24
|
+
<ClipPath id="ApiTemplates_svg__a">
|
|
25
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
26
|
+
</ClipPath>
|
|
27
|
+
</Defs>
|
|
28
|
+
</Svg>
|
|
29
|
+
);
|
|
30
|
+
export default SvgApiTemplates;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgConfigure = (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(#Configure_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 16v4M13 4.75a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 0 0-2.5 0M14.25 1v2.5M14.25 6v5" />
|
|
19
|
+
<Path d="M16.75 8.5a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 0 0-2.5 0M18 1v6.25M18 9.75V11M20.5 2.875a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 0 0-2.5 0M21.75 1v.625M21.75 4.125V11" />
|
|
20
|
+
</G>
|
|
21
|
+
<Defs>
|
|
22
|
+
<ClipPath id="Configure_svg__a">
|
|
23
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
24
|
+
</ClipPath>
|
|
25
|
+
</Defs>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
export default SvgConfigure;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgDependent = (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(#Dependent_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="M3 4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1zM15 16a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1zM21 11V8a2 2 0 0 0-2-2h-6m0 0 3 3m-3-3 3-3M3 13v3a2 2 0 0 0 2 2h6m0 0-3-3m3 3-3 3" />
|
|
19
|
+
</G>
|
|
20
|
+
<Defs>
|
|
21
|
+
<ClipPath id="Dependent_svg__a">
|
|
22
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
23
|
+
</ClipPath>
|
|
24
|
+
</Defs>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgDependent;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgEditSchedule = (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(#EditSchedule_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 10h16M12 22h2.61l6.85-6.85a1.845 1.845 0 1 0-2.61-2.61L12 19.39zM18.198 13.193l2.61 2.61" />
|
|
19
|
+
</G>
|
|
20
|
+
<Defs>
|
|
21
|
+
<ClipPath id="EditSchedule_svg__a">
|
|
22
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
23
|
+
</ClipPath>
|
|
24
|
+
</Defs>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgEditSchedule;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgEmailNotification = (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(#EmailNotification_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-6M18 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-3M17.5 21v.5a1.5 1.5 0 1 0 3 0V21" />
|
|
20
|
+
</G>
|
|
21
|
+
<Defs>
|
|
22
|
+
<ClipPath id="EmailNotification_svg__a">
|
|
23
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
24
|
+
</ClipPath>
|
|
25
|
+
</Defs>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
export default SvgEmailNotification;
|
|
@@ -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;
|
|
@@ -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,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,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;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgMarginAll = (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(#MarginAll_svg__a)">
|
|
12
|
+
<Rect width={12} height={12} x={6} y={6} rx={2} />
|
|
13
|
+
<Path strokeLinecap="round" d="M3 18V6M21 18V6M6 3h12M6 21h12" />
|
|
14
|
+
</G>
|
|
15
|
+
<Defs>
|
|
16
|
+
<ClipPath id="MarginAll_svg__a">
|
|
17
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
18
|
+
</ClipPath>
|
|
19
|
+
</Defs>
|
|
20
|
+
</Svg>
|
|
21
|
+
);
|
|
22
|
+
export default SvgMarginAll;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgMarginBottom = (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(#MarginBottom_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<Rect width={12} height={12} x={6} y={6} rx={2} />
|
|
17
|
+
<Path strokeLinecap="round" d="M6 21h12" />
|
|
18
|
+
</G>
|
|
19
|
+
<Defs>
|
|
20
|
+
<ClipPath id="MarginBottom_svg__a">
|
|
21
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
22
|
+
</ClipPath>
|
|
23
|
+
</Defs>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgMarginBottom;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgMarginLeft = (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(#MarginLeft_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<Rect width={12} height={12} x={6} y={6} rx={2} />
|
|
17
|
+
<Path strokeLinecap="round" d="M3 18V6" />
|
|
18
|
+
</G>
|
|
19
|
+
<Defs>
|
|
20
|
+
<ClipPath id="MarginLeft_svg__a">
|
|
21
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
22
|
+
</ClipPath>
|
|
23
|
+
</Defs>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgMarginLeft;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgMarginRight = (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(#MarginRight_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<Rect width={12} height={12} x={6} y={6} rx={2} />
|
|
17
|
+
<Path strokeLinecap="round" d="M21 18V6" />
|
|
18
|
+
</G>
|
|
19
|
+
<Defs>
|
|
20
|
+
<ClipPath id="MarginRight_svg__a">
|
|
21
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
22
|
+
</ClipPath>
|
|
23
|
+
</Defs>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgMarginRight;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgMarginTop = (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(#MarginTop_svg__a)">
|
|
12
|
+
<Rect width={12} height={12} x={6} y={6} rx={2} />
|
|
13
|
+
<Path strokeLinecap="round" d="M6 3h12" />
|
|
14
|
+
</G>
|
|
15
|
+
<Defs>
|
|
16
|
+
<ClipPath id="MarginTop_svg__a">
|
|
17
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
18
|
+
</ClipPath>
|
|
19
|
+
</Defs>
|
|
20
|
+
</Svg>
|
|
21
|
+
);
|
|
22
|
+
export default SvgMarginTop;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgMarginX = (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(#MarginX_svg__a)">
|
|
12
|
+
<Rect width={12} height={12} x={6} y={6} rx={2} />
|
|
13
|
+
<Path strokeLinecap="round" d="M3 18V6M21 18V6" />
|
|
14
|
+
</G>
|
|
15
|
+
<Defs>
|
|
16
|
+
<ClipPath id="MarginX_svg__a">
|
|
17
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
18
|
+
</ClipPath>
|
|
19
|
+
</Defs>
|
|
20
|
+
</Svg>
|
|
21
|
+
);
|
|
22
|
+
export default SvgMarginX;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgMarginY = (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(#MarginY_svg__a)">
|
|
12
|
+
<Rect width={12} height={12} x={6} y={6} rx={2} />
|
|
13
|
+
<Path strokeLinecap="round" d="M6 3h12M6 21h12" />
|
|
14
|
+
</G>
|
|
15
|
+
<Defs>
|
|
16
|
+
<ClipPath id="MarginY_svg__a">
|
|
17
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
18
|
+
</ClipPath>
|
|
19
|
+
</Defs>
|
|
20
|
+
</Svg>
|
|
21
|
+
);
|
|
22
|
+
export default SvgMarginY;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgPaddingAll = (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(#PaddingAll_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<Rect width={6} height={6} x={9} y={9} rx={1} />
|
|
17
|
+
<Path strokeLinecap="round" d="M21 5v14M3 5v14M19 3H5M19 21H5" />
|
|
18
|
+
</G>
|
|
19
|
+
<Defs>
|
|
20
|
+
<ClipPath id="PaddingAll_svg__a">
|
|
21
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
22
|
+
</ClipPath>
|
|
23
|
+
</Defs>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgPaddingAll;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgPaddingBottom = (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(#PaddingBottom_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<Rect width={6} height={6} x={9} y={9} rx={1} />
|
|
17
|
+
<Path strokeLinecap="round" d="M19 21H5" />
|
|
18
|
+
</G>
|
|
19
|
+
<Defs>
|
|
20
|
+
<ClipPath id="PaddingBottom_svg__a">
|
|
21
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
22
|
+
</ClipPath>
|
|
23
|
+
</Defs>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgPaddingBottom;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgPaddingLeft = (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(#PaddingLeft_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<Rect width={6} height={6} x={9} y={9} rx={1} />
|
|
17
|
+
<Path strokeLinecap="round" d="M3 5v14" />
|
|
18
|
+
</G>
|
|
19
|
+
<Defs>
|
|
20
|
+
<ClipPath id="PaddingLeft_svg__a">
|
|
21
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
22
|
+
</ClipPath>
|
|
23
|
+
</Defs>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgPaddingLeft;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgPaddingRight = (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(#PaddingRight_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<Rect width={6} height={6} x={9} y={9} rx={1} />
|
|
17
|
+
<Path strokeLinecap="round" d="M21 5v14" />
|
|
18
|
+
</G>
|
|
19
|
+
<Defs>
|
|
20
|
+
<ClipPath id="PaddingRight_svg__a">
|
|
21
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
22
|
+
</ClipPath>
|
|
23
|
+
</Defs>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgPaddingRight;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgPaddingTop = (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(#PaddingTop_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<Rect width={6} height={6} x={9} y={9} rx={1} />
|
|
17
|
+
<Path strokeLinecap="round" d="M19 3H5" />
|
|
18
|
+
</G>
|
|
19
|
+
<Defs>
|
|
20
|
+
<ClipPath id="PaddingTop_svg__a">
|
|
21
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
22
|
+
</ClipPath>
|
|
23
|
+
</Defs>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgPaddingTop;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgPaddingX = (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(#PaddingX_svg__a)">
|
|
12
|
+
<Rect width={6} height={6} x={9} y={9} rx={1} />
|
|
13
|
+
<Path strokeLinecap="round" d="M21 5v14M3 5v14" />
|
|
14
|
+
</G>
|
|
15
|
+
<Defs>
|
|
16
|
+
<ClipPath id="PaddingX_svg__a">
|
|
17
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
18
|
+
</ClipPath>
|
|
19
|
+
</Defs>
|
|
20
|
+
</Svg>
|
|
21
|
+
);
|
|
22
|
+
export default SvgPaddingX;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgPaddingY = (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(#PaddingY_svg__a)">
|
|
12
|
+
<Rect width={6} height={6} x={9} y={9} rx={1} />
|
|
13
|
+
<Path strokeLinecap="round" d="M19 3H5M19 21H5" />
|
|
14
|
+
</G>
|
|
15
|
+
<Defs>
|
|
16
|
+
<ClipPath id="PaddingY_svg__a">
|
|
17
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
18
|
+
</ClipPath>
|
|
19
|
+
</Defs>
|
|
20
|
+
</Svg>
|
|
21
|
+
);
|
|
22
|
+
export default SvgPaddingY;
|
|
@@ -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,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,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgTaskTags = (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="m11 20-7.414-7.414A2 2 0 0 1 3 11.172V6a3 3 0 0 1 3-3h5.172a2 2 0 0 1 1.414.586l3.855 3.855L18 9M15 12h7.333M15 15h7.333M15 18h7.333M13 12v.007M13 15v.007M13 18v.007"
|
|
24
|
+
/>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgTaskTags;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgTax = (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="M20 3H4a1 1 0 0 0-1 1v13.323a1 1 0 0 0 .332.744l2.51 2.253a1 1 0 0 0 1.424-.089l1.116-1.287a1 1 0 0 1 1.366-.138l2.16 1.662a1 1 0 0 0 1.313-.082l1.476-1.46a1 1 0 0 1 1.406 0l1.338 1.323a1 1 0 0 0 1.459-.056l1.856-2.142a1 1 0 0 0 .244-.655V4a1 1 0 0 0-1-1M9 14l6-6"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
stroke={props.color}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
strokeWidth={1.5}
|
|
23
|
+
d="M9.5 9a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M14.5 14a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1"
|
|
24
|
+
/>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgTax;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgTaxDetails = (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="M9 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.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.75M12 7a5 5 0 1 0 9.999 0A5 5 0 0 0 12 7M15.333 8.708l3.334-3.333M15.333 5.392v.006M18.667 8.733v.007"
|
|
24
|
+
/>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgTaxDetails;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgThankYouPage = (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(#ThankYouPage_svg__a)"
|
|
16
|
+
>
|
|
17
|
+
<Path
|
|
18
|
+
strokeLinejoin="round"
|
|
19
|
+
d="M9.75 17h-5.5c-.597 0-1.169-.184-1.591-.513C2.237 16.16 2 15.714 2 15.25V4.75c0-.464.237-.91.659-1.237C3.081 3.184 3.653 3 4.25 3h13.5c.597 0 1.169.184 1.591.513.422.328.659.773.659 1.237V10M5 6h.01M7.01 6h.01M9.02 6h.01"
|
|
20
|
+
/>
|
|
21
|
+
<Path
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
d="M14.382 15.169v4.764a.596.596 0 0 1-.595.596h-1.191a.596.596 0 0 1-.596-.596v-4.169a.596.596 0 0 1 .596-.595zm0 0a2.38 2.38 0 0 0 2.382-2.382v-.596a1.19 1.19 0 1 1 2.383 0v2.978h1.786a1.19 1.19 0 0 1 1.191 1.191l-.595 2.978c-.086.365-.248.679-.463.894s-.47.319-.728.297h-4.17a1.787 1.787 0 0 1-1.786-1.787"
|
|
24
|
+
/>
|
|
25
|
+
<Path d="M2 8h18" />
|
|
26
|
+
</G>
|
|
27
|
+
<Defs>
|
|
28
|
+
<ClipPath id="ThankYouPage_svg__a">
|
|
29
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
30
|
+
</ClipPath>
|
|
31
|
+
</Defs>
|
|
32
|
+
</Svg>
|
|
33
|
+
);
|
|
34
|
+
export default SvgThankYouPage;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgWeb = (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(#Web_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-1h3M7 20h10M9 16v4M15 16v4" />
|
|
19
|
+
<Path d="M9 7a6 6 0 1 0 12 0A6 6 0 0 0 9 7M9.4 5h11.2M9.4 9h11.2" />
|
|
20
|
+
<Path d="M14.667 1a11.33 11.33 0 0 0 0 12M15.333 1a11.33 11.33 0 0 1 0 12" />
|
|
21
|
+
</G>
|
|
22
|
+
<Defs>
|
|
23
|
+
<ClipPath id="Web_svg__a">
|
|
24
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
25
|
+
</ClipPath>
|
|
26
|
+
</Defs>
|
|
27
|
+
</Svg>
|
|
28
|
+
);
|
|
29
|
+
export default SvgWeb;
|
package/dist/icons/index.js
CHANGED
|
@@ -5,6 +5,7 @@ export { default as AddRectangle } from "./AddRectangle";
|
|
|
5
5
|
export { default as Address } from "./Address";
|
|
6
6
|
export { default as AgentStatus } from "./AgentStatus";
|
|
7
7
|
export { default as Agents } from "./Agents";
|
|
8
|
+
export { default as ApiTemplates } from "./ApiTemplates";
|
|
8
9
|
export { default as AppSwitcher } from "./AppSwitcher";
|
|
9
10
|
export { default as Apple } from "./Apple";
|
|
10
11
|
export { default as Approval } from "./Approval";
|
|
@@ -55,6 +56,7 @@ export { default as CompanyInfo } from "./CompanyInfo";
|
|
|
55
56
|
export { default as CompanyTags } from "./CompanyTags";
|
|
56
57
|
export { default as Computer } from "./Computer";
|
|
57
58
|
export { default as Concat } from "./Concat";
|
|
59
|
+
export { default as Configure } from "./Configure";
|
|
58
60
|
export { default as ContactBook } from "./ContactBook";
|
|
59
61
|
export { default as ContactField } from "./ContactField";
|
|
60
62
|
export { default as ContactTags } from "./ContactTags";
|
|
@@ -72,6 +74,7 @@ export { default as DeleteColumn } from "./DeleteColumn";
|
|
|
72
74
|
export { default as DeleteRow } from "./DeleteRow";
|
|
73
75
|
export { default as DeleteTable } from "./DeleteTable";
|
|
74
76
|
export { default as Delete } from "./Delete";
|
|
77
|
+
export { default as Dependent } from "./Dependent";
|
|
75
78
|
export { default as Design } from "./Design";
|
|
76
79
|
export { default as Divide } from "./Divide";
|
|
77
80
|
export { default as Divider } from "./Divider";
|
|
@@ -86,7 +89,9 @@ export { default as Drag } from "./Drag";
|
|
|
86
89
|
export { default as Dropdown } from "./Dropdown";
|
|
87
90
|
export { default as DropdownClosed } from "./DropdownClosed";
|
|
88
91
|
export { default as Edit } from "./Edit";
|
|
92
|
+
export { default as EditSchedule } from "./EditSchedule";
|
|
89
93
|
export { default as Email } from "./Email";
|
|
94
|
+
export { default as EmailNotification } from "./EmailNotification";
|
|
90
95
|
export { default as EmailSent } from "./EmailSent";
|
|
91
96
|
export { default as EmailSync } from "./EmailSync";
|
|
92
97
|
export { default as EmailTemplates } from "./EmailTemplates";
|
|
@@ -110,9 +115,11 @@ export { default as FileUpload } from "./FileUpload";
|
|
|
110
115
|
export { default as Filter } from "./Filter";
|
|
111
116
|
export { default as Flag } from "./Flag";
|
|
112
117
|
export { default as Flash } from "./Flash";
|
|
118
|
+
export { default as FlowChart } from "./FlowChart";
|
|
113
119
|
export { default as Focus } from "./Focus";
|
|
114
120
|
export { default as Folder } from "./Folder";
|
|
115
121
|
export { default as Form } from "./Form";
|
|
122
|
+
export { default as FormClosed } from "./FormClosed";
|
|
116
123
|
export { default as Forward } from "./Forward";
|
|
117
124
|
export { default as FullScreen } from "./FullScreen";
|
|
118
125
|
export { default as Gif } from "./Gif";
|
|
@@ -136,6 +143,7 @@ export { default as HourGlass } from "./HourGlass";
|
|
|
136
143
|
export { default as Html } from "./Html";
|
|
137
144
|
export { default as Image } from "./Image";
|
|
138
145
|
export { default as ImportTimesheet } from "./ImportTimesheet";
|
|
146
|
+
export { default as Inactive } from "./Inactive";
|
|
139
147
|
export { default as Inbox } from "./Inbox";
|
|
140
148
|
export { default as IndeterminateCircle } from "./IndeterminateCircle";
|
|
141
149
|
export { default as Info } from "./Info";
|
|
@@ -144,6 +152,7 @@ export { default as Input } from "./Input";
|
|
|
144
152
|
export { default as InsertColumn } from "./InsertColumn";
|
|
145
153
|
export { default as InsertRow } from "./InsertRow";
|
|
146
154
|
export { default as IntroPages } from "./IntroPages";
|
|
155
|
+
export { default as InvalidUrl } from "./InvalidUrl";
|
|
147
156
|
export { default as Invoice } from "./Invoice";
|
|
148
157
|
export { default as InvoiceSettings } from "./InvoiceSettings";
|
|
149
158
|
export { default as IpAddress } from "./IpAddress";
|
|
@@ -164,8 +173,16 @@ export { default as Lock } from "./Lock";
|
|
|
164
173
|
export { default as LockMessage } from "./LockMessage";
|
|
165
174
|
export { default as MailUnread } from "./MailUnread";
|
|
166
175
|
export { default as MailSend } from "./MailSend";
|
|
176
|
+
export { default as ManageCalendar } from "./ManageCalendar";
|
|
167
177
|
export { default as ManageTemplates } from "./ManageTemplates";
|
|
168
178
|
export { default as MappedField } from "./MappedField";
|
|
179
|
+
export { default as MarginAll } from "./MarginAll";
|
|
180
|
+
export { default as MarginBottom } from "./MarginBottom";
|
|
181
|
+
export { default as MarginLeft } from "./MarginLeft";
|
|
182
|
+
export { default as MarginRight } from "./MarginRight";
|
|
183
|
+
export { default as MarginTop } from "./MarginTop";
|
|
184
|
+
export { default as MarginX } from "./MarginX";
|
|
185
|
+
export { default as MarginY } from "./MarginY";
|
|
169
186
|
export { default as Matrix } from "./Matrix";
|
|
170
187
|
export { default as MatrixDots } from "./MatrixDots";
|
|
171
188
|
export { default as MatrixDotsClear } from "./MatrixDotsClear";
|
|
@@ -196,6 +213,13 @@ export { default as NewChat } from "./NewChat";
|
|
|
196
213
|
export { default as Notes } from "./Notes";
|
|
197
214
|
export { default as Notification } from "./Notification";
|
|
198
215
|
export { default as Os } from "./Os";
|
|
216
|
+
export { default as PaddingAll } from "./PaddingAll";
|
|
217
|
+
export { default as PaddingBottom } from "./PaddingBottom";
|
|
218
|
+
export { default as PaddingLeft } from "./PaddingLeft";
|
|
219
|
+
export { default as PaddingRight } from "./PaddingRight";
|
|
220
|
+
export { default as PaddingTop } from "./PaddingTop";
|
|
221
|
+
export { default as PaddingX } from "./PaddingX";
|
|
222
|
+
export { default as PaddingY } from "./PaddingY";
|
|
199
223
|
export { default as Pause } from "./Pause";
|
|
200
224
|
export { default as Phone } from "./Phone";
|
|
201
225
|
export { default as PhoneRing } from "./PhoneRing";
|
|
@@ -203,6 +227,7 @@ export { default as Pipeline } from "./Pipeline";
|
|
|
203
227
|
export { default as Play } from "./Play";
|
|
204
228
|
export { default as Plus } from "./Plus";
|
|
205
229
|
export { default as Prepend } from "./Prepend";
|
|
230
|
+
export { default as PreventDuplicate } from "./PreventDuplicate";
|
|
206
231
|
export { default as Print } from "./Print";
|
|
207
232
|
export { default as Puzzle } from "./Puzzle";
|
|
208
233
|
export { default as QrCode } from "./QrCode";
|
|
@@ -211,6 +236,8 @@ export { default as Radio } from "./Radio";
|
|
|
211
236
|
export { default as RadioInactive } from "./RadioInactive";
|
|
212
237
|
export { default as Rating } from "./Rating";
|
|
213
238
|
export { default as RatingFilled } from "./RatingFilled";
|
|
239
|
+
export { default as RecurringInvoice } from "./RecurringInvoice";
|
|
240
|
+
export { default as RecurringMeeting } from "./RecurringMeeting";
|
|
214
241
|
export { default as Redirect } from "./Redirect";
|
|
215
242
|
export { default as RedirectUrl } from "./RedirectUrl";
|
|
216
243
|
export { default as Redirection } from "./Redirection";
|
|
@@ -233,6 +260,7 @@ export { default as SendPlane } from "./SendPlane";
|
|
|
233
260
|
export { default as Seo } from "./Seo";
|
|
234
261
|
export { default as Settings } from "./Settings";
|
|
235
262
|
export { default as SettingsChecked } from "./SettingsChecked";
|
|
263
|
+
export { default as Setup } from "./Setup";
|
|
236
264
|
export { default as Shapes } from "./Shapes";
|
|
237
265
|
export { default as Share } from "./Share";
|
|
238
266
|
export { default as SidebarClose } from "./SidebarClose";
|
|
@@ -256,13 +284,17 @@ export { default as Tabs } from "./Tabs";
|
|
|
256
284
|
export { default as Tag } from "./Tag";
|
|
257
285
|
export { default as Tags } from "./Tags";
|
|
258
286
|
export { default as TaskOutcome } from "./TaskOutcome";
|
|
287
|
+
export { default as TaskTags } from "./TaskTags";
|
|
259
288
|
export { default as TaskType } from "./TaskType";
|
|
289
|
+
export { default as Tax } from "./Tax";
|
|
290
|
+
export { default as TaxDetails } from "./TaxDetails";
|
|
260
291
|
export { default as Taxonomy } from "./Taxonomy";
|
|
261
292
|
export { default as Templates } from "./Templates";
|
|
262
293
|
export { default as Terms } from "./Terms";
|
|
263
294
|
export { default as Text } from "./Text";
|
|
264
295
|
export { default as TextLines } from "./TextLines";
|
|
265
296
|
export { default as TextSize } from "./TextSize";
|
|
297
|
+
export { default as ThankYouPage } from "./ThankYouPage";
|
|
266
298
|
export { default as TicketField } from "./TicketField";
|
|
267
299
|
export { default as TicketSettings } from "./TicketSettings";
|
|
268
300
|
export { default as TicketTags } from "./TicketTags";
|
|
@@ -303,6 +335,7 @@ export { default as VolumeOutline } from "./VolumeOutline";
|
|
|
303
335
|
export { default as VolumeOutline0 } from "./VolumeOutline0";
|
|
304
336
|
export { default as WarningFilled } from "./WarningFilled";
|
|
305
337
|
export { default as Warning } from "./Warning";
|
|
338
|
+
export { default as Web } from "./Web";
|
|
306
339
|
export { default as Whatsapp } from "./Whatsapp";
|
|
307
340
|
export { default as WidgetModes } from "./WidgetModes";
|
|
308
341
|
export { default as WidgetVisibility } from "./WidgetVisibility";
|