@bigbinary/neeto-icons-rn 1.20.56 → 1.20.57
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/elements/Image.js +6 -6
- package/dist/elements/Link.js +4 -5
- package/dist/icons/Address.js +4 -39
- package/dist/icons/Agents.js +2 -2
- package/dist/icons/AlignCenter.js +21 -0
- package/dist/icons/Articles.js +5 -28
- package/dist/icons/Attachments.js +21 -0
- package/dist/icons/Blockquote.js +3 -3
- package/dist/icons/Calendar.js +3 -24
- package/dist/icons/Camera.js +6 -13
- package/dist/icons/CannedResponses.js +6 -3
- package/dist/icons/Captcha.js +4 -18
- package/dist/icons/ChatEmpty.js +3 -3
- package/dist/icons/CheckCircle.js +3 -10
- package/dist/icons/Checkmark.js +22 -15
- package/dist/icons/CloseCircle.js +3 -17
- package/dist/icons/ClosedHand.js +50 -0
- package/dist/icons/Code.js +2 -2
- package/dist/icons/ContextualMenu.js +54 -0
- package/dist/icons/CreditCard.js +8 -36
- package/dist/icons/Cursor2.js +38 -0
- package/dist/icons/Delete.js +3 -24
- package/dist/icons/Divider.js +2 -2
- package/dist/icons/DoubleLeft.js +21 -0
- package/dist/icons/DoubleRight.js +21 -0
- package/dist/icons/Dropdown.js +43 -36
- package/dist/icons/DropdownClosed.js +4 -11
- package/dist/icons/Email.js +15 -8
- package/dist/icons/Emoji.js +21 -0
- package/dist/icons/FileUpload.js +4 -32
- package/dist/icons/Flag.js +4 -4
- package/dist/icons/FontSize.js +21 -0
- package/dist/icons/FullScreen.js +8 -37
- package/dist/icons/Gif.js +3 -10
- package/dist/icons/Hash.js +37 -37
- package/dist/icons/Header.js +3 -3
- package/dist/icons/Highlight.js +36 -22
- package/dist/icons/Ibeam.js +42 -0
- package/dist/icons/Image.js +8 -29
- package/dist/icons/Inbox.js +2 -2
- package/dist/icons/InfoRound.js +8 -29
- package/dist/icons/Input.js +4 -4
- package/dist/icons/IpAddress.js +4 -4
- package/dist/icons/Link.js +3 -10
- package/dist/icons/List.js +4 -4
- package/dist/icons/ListDetails.js +2 -2
- package/dist/icons/ListDot.js +3 -31
- package/dist/icons/ListNumber.js +3 -3
- package/dist/icons/Loading.js +3 -52
- package/dist/icons/Logout.js +35 -0
- package/dist/icons/LongText.js +21 -0
- package/dist/icons/Matrix.js +4 -13
- package/dist/icons/MediaVideo.js +5 -5
- package/dist/icons/Message.js +3 -10
- package/dist/icons/Move.js +36 -0
- package/dist/icons/MultipleChoice.js +21 -40
- package/dist/icons/Mute.js +21 -0
- package/dist/icons/NewField.js +21 -0
- package/dist/icons/Notes.js +12 -4
- package/dist/icons/Number.js +21 -0
- package/dist/icons/OpenHand.js +49 -0
- package/dist/icons/OpinionScale.js +21 -0
- package/dist/icons/Paragraph.js +3 -3
- package/dist/icons/Phone.js +15 -8
- package/dist/icons/Play.js +4 -4
- package/dist/icons/PointingHand.js +51 -0
- package/dist/icons/PriorityHigh.js +18 -0
- package/dist/icons/PriorityLow.js +18 -0
- package/dist/icons/PriorityMedium.js +18 -0
- package/dist/icons/Share.js +3 -31
- package/dist/icons/Signature.js +19 -0
- package/dist/icons/SingleChoice.js +49 -0
- package/dist/icons/Slash.js +21 -0
- package/dist/icons/StarRating.js +21 -0
- package/dist/icons/SubmissionCount.js +21 -0
- package/dist/icons/Tag.js +19 -22
- package/dist/icons/Tag1.js +21 -0
- package/dist/icons/Terms.js +9 -16
- package/dist/icons/Text.js +11 -11
- package/dist/icons/TextBold.js +3 -3
- package/dist/icons/TextColor.js +21 -0
- package/dist/icons/TextCross.js +8 -8
- package/dist/icons/TextField.js +21 -0
- package/dist/icons/TextH1.js +5 -6
- package/dist/icons/TextH2.js +5 -6
- package/dist/icons/TextItalic.js +3 -3
- package/dist/icons/TimeTracker.js +21 -0
- package/dist/icons/Underline.js +3 -17
- package/dist/icons/UniqueId.js +42 -0
- package/dist/icons/User.js +4 -4
- package/dist/icons/UserReassigned.js +42 -0
- package/dist/icons/UserRoundedRect.js +4 -18
- package/dist/icons/Video.js +2 -2
- package/dist/icons/Volume.js +4 -6
- package/dist/icons/Volume0.js +3 -12
- package/dist/icons/Warning2.js +4 -4
- package/dist/icons/YesNo.js +4 -11
- package/dist/icons/Youtube.js +7 -7
- package/dist/icons/index.js +38 -5
- package/package.json +1 -1
package/dist/icons/CreditCard.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import Svg, {
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
3
|
const SvgCreditCard = (props) => (
|
|
4
4
|
<Svg
|
|
5
5
|
fill="none"
|
|
@@ -9,41 +9,13 @@ const SvgCreditCard = (props) => (
|
|
|
9
9
|
height={props.size}
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
/>
|
|
20
|
-
<Path
|
|
21
|
-
d="M3 10H21"
|
|
22
|
-
stroke={props.color}
|
|
23
|
-
strokeWidth={1.6}
|
|
24
|
-
strokeLinecap="round"
|
|
25
|
-
strokeLinejoin="round"
|
|
26
|
-
/>
|
|
27
|
-
<Path
|
|
28
|
-
d="M7 15H7.01"
|
|
29
|
-
stroke={props.color}
|
|
30
|
-
strokeWidth={1.6}
|
|
31
|
-
strokeLinecap="round"
|
|
32
|
-
strokeLinejoin="round"
|
|
33
|
-
/>
|
|
34
|
-
<Path
|
|
35
|
-
d="M11 15H13"
|
|
36
|
-
stroke={props.color}
|
|
37
|
-
strokeWidth={1.6}
|
|
38
|
-
strokeLinecap="round"
|
|
39
|
-
strokeLinejoin="round"
|
|
40
|
-
/>
|
|
41
|
-
</G>
|
|
42
|
-
<Defs>
|
|
43
|
-
<ClipPath id="clip0_3708_118">
|
|
44
|
-
<Rect width={24} height={24} fill="white" />
|
|
45
|
-
</ClipPath>
|
|
46
|
-
</Defs>
|
|
12
|
+
<Path
|
|
13
|
+
d="M3 10H21M7 15H7.01M11 15H13M6 5H18C19.6569 5 21 6.34315 21 8V16C21 17.6569 19.6569 19 18 19H6C4.34315 19 3 17.6569 3 16V8C3 6.34315 4.34315 5 6 5Z"
|
|
14
|
+
stroke="#344054"
|
|
15
|
+
strokeWidth={1.2}
|
|
16
|
+
strokeLinecap="round"
|
|
17
|
+
strokeLinejoin="round"
|
|
18
|
+
/>
|
|
47
19
|
</Svg>
|
|
48
20
|
);
|
|
49
21
|
export default SvgCreditCard;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgCursor2 = (props) => (
|
|
4
|
+
<Svg
|
|
5
|
+
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
viewBox="0 0 11 16"
|
|
8
|
+
width={props.size}
|
|
9
|
+
height={props.size}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
fillRule="evenodd"
|
|
14
|
+
clipRule="evenodd"
|
|
15
|
+
d="M0 13.4863V0L9.76084 9.78442H4.05053L3.70442 9.88884L0 13.4863Z"
|
|
16
|
+
fill="white"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
fillRule="evenodd"
|
|
20
|
+
clipRule="evenodd"
|
|
21
|
+
d="M7.6501 14.0541L4.61431 15.3468L0.67157 6.00866L3.77557 4.70087L7.6501 14.0541Z"
|
|
22
|
+
fill="white"
|
|
23
|
+
/>
|
|
24
|
+
<Path
|
|
25
|
+
fillRule="evenodd"
|
|
26
|
+
clipRule="evenodd"
|
|
27
|
+
d="M6.52714 13.4809L4.9743 14.1327L2.36377 7.92302L3.91409 7.27039L6.52714 13.4809Z"
|
|
28
|
+
fill="#121212"
|
|
29
|
+
/>
|
|
30
|
+
<Path
|
|
31
|
+
fillRule="evenodd"
|
|
32
|
+
clipRule="evenodd"
|
|
33
|
+
d="M0.842102 2.02704V11.4485L3.34231 9.03504L3.70273 8.91799H7.71789L0.842102 2.02704Z"
|
|
34
|
+
fill="#121212"
|
|
35
|
+
/>
|
|
36
|
+
</Svg>
|
|
37
|
+
);
|
|
38
|
+
export default SvgCursor2;
|
package/dist/icons/Delete.js
CHANGED
|
@@ -10,30 +10,9 @@ const SvgDelete = (props) => (
|
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
12
|
<Path
|
|
13
|
-
d="
|
|
14
|
-
stroke=
|
|
15
|
-
strokeWidth={1.
|
|
16
|
-
strokeLinecap="round"
|
|
17
|
-
strokeLinejoin="round"
|
|
18
|
-
/>
|
|
19
|
-
<Path
|
|
20
|
-
d="M20 6.375H4"
|
|
21
|
-
stroke={props.color}
|
|
22
|
-
strokeWidth={1.5}
|
|
23
|
-
strokeLinecap="round"
|
|
24
|
-
strokeLinejoin="round"
|
|
25
|
-
/>
|
|
26
|
-
<Path
|
|
27
|
-
d="M9.1875 3H14.8125C15.1109 3 15.397 3.11853 15.608 3.3295C15.819 3.54048 15.9375 3.82663 15.9375 4.125V6.375H8.0625V4.125C8.0625 3.82663 8.18103 3.54048 8.392 3.3295C8.60298 3.11853 8.88913 3 9.1875 3V3Z"
|
|
28
|
-
stroke={props.color}
|
|
29
|
-
strokeWidth={1.5}
|
|
30
|
-
strokeLinecap="round"
|
|
31
|
-
strokeLinejoin="round"
|
|
32
|
-
/>
|
|
33
|
-
<Path
|
|
34
|
-
d="M10 17H14"
|
|
35
|
-
stroke={props.color}
|
|
36
|
-
strokeWidth={1.5}
|
|
13
|
+
d="M20 6.375H4M15.5414 21H8.45857C7.89171 21 7.34573 20.786 6.92981 20.4009C6.51389 20.0157 6.25868 19.4878 6.2152 18.9226L5.25 6.375H18.75L17.7848 18.9226C17.7413 19.4878 17.4861 20.0157 17.0702 20.4009C16.6543 20.786 16.1083 21 15.5414 21ZM9.18748 3H14.8125C15.1108 3 15.397 3.11853 15.608 3.3295C15.819 3.54048 15.9375 3.82663 15.9375 4.125V6.375H8.06248V4.125C8.06248 3.82663 8.18101 3.54048 8.39198 3.3295C8.60296 3.11853 8.88911 3 9.18748 3Z"
|
|
14
|
+
stroke="#344054"
|
|
15
|
+
strokeWidth={1.2}
|
|
37
16
|
strokeLinecap="round"
|
|
38
17
|
strokeLinejoin="round"
|
|
39
18
|
/>
|
package/dist/icons/Divider.js
CHANGED
|
@@ -2,14 +2,14 @@ import * as React from "react";
|
|
|
2
2
|
import Svg, { Path } from "react-native-svg";
|
|
3
3
|
const SvgDivider = (props) => (
|
|
4
4
|
<Svg
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
5
|
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
viewBox="0 0 24 24"
|
|
8
8
|
width={props.size}
|
|
9
9
|
height={props.size}
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
|
-
<Path stroke="
|
|
12
|
+
<Path d="M4 12H20" stroke="#344054" strokeWidth={1.2} />
|
|
13
13
|
</Svg>
|
|
14
14
|
);
|
|
15
15
|
export default SvgDivider;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgDoubleLeft = (props) => (
|
|
4
|
+
<Svg
|
|
5
|
+
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
width={props.size}
|
|
9
|
+
height={props.size}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
d="M11 7L6 12L11 17M17 7L12 12L17 17"
|
|
14
|
+
stroke="#344054"
|
|
15
|
+
strokeWidth={1.2}
|
|
16
|
+
strokeLinecap="round"
|
|
17
|
+
strokeLinejoin="round"
|
|
18
|
+
/>
|
|
19
|
+
</Svg>
|
|
20
|
+
);
|
|
21
|
+
export default SvgDoubleLeft;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgDoubleRight = (props) => (
|
|
4
|
+
<Svg
|
|
5
|
+
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
width={props.size}
|
|
9
|
+
height={props.size}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
d="M7 7L12 12L7 17M13 7L18 12L13 17"
|
|
14
|
+
stroke="#344054"
|
|
15
|
+
strokeWidth={1.2}
|
|
16
|
+
strokeLinecap="round"
|
|
17
|
+
strokeLinejoin="round"
|
|
18
|
+
/>
|
|
19
|
+
</Svg>
|
|
20
|
+
);
|
|
21
|
+
export default SvgDoubleRight;
|
package/dist/icons/Dropdown.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, Rect } from "react-native-svg";
|
|
3
3
|
const SvgDropdown = (props) => (
|
|
4
4
|
<Svg
|
|
5
5
|
fill="none"
|
|
@@ -9,41 +9,48 @@ const SvgDropdown = (props) => (
|
|
|
9
9
|
height={props.size}
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
12
|
+
<G clipPath="url(#clip0_149_566)">
|
|
13
|
+
<Path
|
|
14
|
+
d="M6 13H12"
|
|
15
|
+
stroke="#344054"
|
|
16
|
+
strokeWidth={1.2}
|
|
17
|
+
strokeLinecap="round"
|
|
18
|
+
strokeLinejoin="round"
|
|
19
|
+
/>
|
|
20
|
+
<Path
|
|
21
|
+
d="M6 17H12"
|
|
22
|
+
stroke="#344054"
|
|
23
|
+
strokeWidth={1.2}
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
<Path
|
|
28
|
+
d="M18.999 5.77499C18.875 5.77499 18.774 5.87599 18.775 5.99999C18.775 6.12399 18.876 6.22499 19 6.22499C19.124 6.22499 19.225 6.12399 19.225 5.99999C19.225 5.87599 19.124 5.77499 18.999 5.77499"
|
|
29
|
+
stroke="#344054"
|
|
30
|
+
strokeWidth={1.2}
|
|
31
|
+
strokeLinecap="round"
|
|
32
|
+
strokeLinejoin="round"
|
|
33
|
+
/>
|
|
34
|
+
<Path
|
|
35
|
+
d="M2 19C2 20.105 2.895 21 4 21H14C15.105 21 16 20.105 16 19V3H4C2.895 3 2 3.895 2 5V19Z"
|
|
36
|
+
stroke="#344054"
|
|
37
|
+
strokeWidth={1.2}
|
|
38
|
+
strokeLinecap="round"
|
|
39
|
+
strokeLinejoin="round"
|
|
40
|
+
/>
|
|
41
|
+
<Path
|
|
42
|
+
d="M16 3H20C21.105 3 22 3.895 22 5V7C22 8.105 21.105 9 20 9H2"
|
|
43
|
+
stroke="#344054"
|
|
44
|
+
strokeWidth={1.2}
|
|
45
|
+
strokeLinecap="round"
|
|
46
|
+
strokeLinejoin="round"
|
|
47
|
+
/>
|
|
48
|
+
</G>
|
|
49
|
+
<Defs>
|
|
50
|
+
<ClipPath id="clip0_149_566">
|
|
51
|
+
<Rect width={24} height={24} fill="white" />
|
|
52
|
+
</ClipPath>
|
|
53
|
+
</Defs>
|
|
47
54
|
</Svg>
|
|
48
55
|
);
|
|
49
56
|
export default SvgDropdown;
|
|
@@ -2,26 +2,19 @@ import * as React from "react";
|
|
|
2
2
|
import Svg, { Path } from "react-native-svg";
|
|
3
3
|
const SvgDropdownClosed = (props) => (
|
|
4
4
|
<Svg
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
5
|
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
viewBox="0 0 24 24"
|
|
8
8
|
width={props.size}
|
|
9
9
|
height={props.size}
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
12
|
<Path
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
strokeWidth={1.5}
|
|
17
|
-
d="M19 7H5C3.895 7 3 7.895 3 9V14.844C3 15.949 3.895 16.844 5 16.844H19C20.105 16.844 21 15.949 21 14.844V9C21 7.895 20.105 7 19 7Z"
|
|
18
|
-
/>
|
|
19
|
-
<Path
|
|
20
|
-
stroke="currentColor"
|
|
13
|
+
d="M13.5 11.8464L14.7318 13.0781C15.1316 13.5579 15.8684 13.5579 16.2682 13.0781L17.5 11.8464M20 17H4C3.448 17 3 16.552 3 16L3 8.5C3 7.948 3.448 7.5 4 7.5H20C20.552 7.5 21 7.948 21 8.5V16C21 16.552 20.552 17 20 17Z"
|
|
14
|
+
stroke="#344054"
|
|
15
|
+
strokeWidth={1.2}
|
|
21
16
|
strokeLinecap="round"
|
|
22
17
|
strokeLinejoin="round"
|
|
23
|
-
strokeWidth={1.5}
|
|
24
|
-
d="M17.536 11L15.768 12.768L14 11"
|
|
25
18
|
/>
|
|
26
19
|
</Svg>
|
|
27
20
|
);
|
package/dist/icons/Email.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, Rect } from "react-native-svg";
|
|
3
3
|
const SvgEmail = (props) => (
|
|
4
4
|
<Svg
|
|
5
5
|
fill="none"
|
|
@@ -9,13 +9,20 @@ const SvgEmail = (props) => (
|
|
|
9
9
|
height={props.size}
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
<G clipPath="url(#clip0_149_563)">
|
|
13
|
+
<Path
|
|
14
|
+
d="M17 21H12C10.22 21 8.47991 20.4722 6.99987 19.4832C5.51983 18.4943 4.36628 17.0887 3.68509 15.4442C3.0039 13.7996 2.82567 11.99 3.17294 10.2442C3.5202 8.49836 4.37737 6.89472 5.63604 5.63604C6.89472 4.37737 8.49836 3.5202 10.2442 3.17294C11.99 2.82567 13.7996 3.0039 15.4442 3.68509C17.0887 4.36628 18.4943 5.51983 19.4832 6.99987C20.4722 8.47991 21 10.22 21 12V13.5C21 14.163 20.7366 14.7989 20.2678 15.2678C19.7989 15.7366 19.163 16 18.5 16C17.837 16 17.2011 15.7366 16.7322 15.2678C16.2634 14.7989 16 14.163 16 13.5V12C16 10.9391 15.5786 9.92172 14.8284 9.17158C14.0783 8.42143 13.0609 8 12 8V8C11.2089 8 10.4355 8.2346 9.77772 8.67413C9.11993 9.11365 8.60724 9.73837 8.30449 10.4693C8.00174 11.2002 7.92252 12.0044 8.07686 12.7804C8.2312 13.5563 8.61217 14.269 9.17158 14.8284C9.73099 15.3878 10.4437 15.7688 11.2196 15.9231C11.9956 16.0775 12.7998 15.9983 13.5307 15.6955C14.2616 15.3928 14.8864 14.8801 15.3259 14.2223C15.7654 13.5645 16 12.7911 16 12"
|
|
15
|
+
stroke="#344054"
|
|
16
|
+
strokeWidth={1.2}
|
|
17
|
+
strokeLinecap="round"
|
|
18
|
+
strokeLinejoin="round"
|
|
19
|
+
/>
|
|
20
|
+
</G>
|
|
21
|
+
<Defs>
|
|
22
|
+
<ClipPath id="clip0_149_563">
|
|
23
|
+
<Rect width={24} height={24} fill="white" />
|
|
24
|
+
</ClipPath>
|
|
25
|
+
</Defs>
|
|
19
26
|
</Svg>
|
|
20
27
|
);
|
|
21
28
|
export default SvgEmail;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgEmoji = (props) => (
|
|
4
|
+
<Svg
|
|
5
|
+
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
width={props.size}
|
|
9
|
+
height={props.size}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
d="M8.8 13.6C8.8 13.6 10 15.2 12 15.2C14 15.2 15.2 13.6 15.2 13.6M9.6 9.6H9.608M14.4 9.6H14.408M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z"
|
|
14
|
+
stroke="#344054"
|
|
15
|
+
strokeWidth={1.2}
|
|
16
|
+
strokeLinecap="round"
|
|
17
|
+
strokeLinejoin="round"
|
|
18
|
+
/>
|
|
19
|
+
</Svg>
|
|
20
|
+
);
|
|
21
|
+
export default SvgEmoji;
|
package/dist/icons/FileUpload.js
CHANGED
|
@@ -2,47 +2,19 @@ import * as React from "react";
|
|
|
2
2
|
import Svg, { Path } from "react-native-svg";
|
|
3
3
|
const SvgFileUpload = (props) => (
|
|
4
4
|
<Svg
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
5
|
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
viewBox="0 0 24 24"
|
|
8
8
|
width={props.size}
|
|
9
9
|
height={props.size}
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
12
|
<Path
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
strokeWidth={1.5}
|
|
17
|
-
d="M19 9H5C3.89543 9 3 9.89543 3 11V19C3 20.1046 3.89543 21 5 21H19C20.1046 21 21 20.1046 21 19V11C21 9.89543 20.1046 9 19 9Z"
|
|
18
|
-
/>
|
|
19
|
-
<Path
|
|
20
|
-
stroke="currentColor"
|
|
21
|
-
strokeLinecap="round"
|
|
22
|
-
strokeLinejoin="round"
|
|
23
|
-
strokeWidth={1.5}
|
|
24
|
-
d="M5.5 6H18.5"
|
|
25
|
-
/>
|
|
26
|
-
<Path
|
|
27
|
-
stroke="currentColor"
|
|
28
|
-
strokeLinecap="round"
|
|
29
|
-
strokeLinejoin="round"
|
|
30
|
-
strokeWidth={1.5}
|
|
31
|
-
d="M7.5 3H17.5"
|
|
32
|
-
/>
|
|
33
|
-
<Path
|
|
34
|
-
stroke="currentColor"
|
|
35
|
-
strokeLinecap="round"
|
|
36
|
-
strokeLinejoin="round"
|
|
37
|
-
strokeWidth={1.5}
|
|
38
|
-
d="M12 17V13"
|
|
39
|
-
/>
|
|
40
|
-
<Path
|
|
41
|
-
stroke="currentColor"
|
|
13
|
+
d="M10.0497 12.5717L12 10.7143M12 10.7143L13.9503 12.5717M12 10.7143V15M6.8916 9.48686C4.6965 9.77229 3 11.5457 3 13.7143C3 16.0809 5.0151 18 7.5 18H17.4C19.3881 18 21 16.4649 21 14.5714C21 12.678 19.3881 11.1429 17.4 11.1429C17.4 8.30229 14.9826 6 12 6C9.6267 6 7.6161 7.45971 6.8916 9.48686Z"
|
|
14
|
+
stroke="#344054"
|
|
15
|
+
strokeWidth={1.2}
|
|
42
16
|
strokeLinecap="round"
|
|
43
17
|
strokeLinejoin="round"
|
|
44
|
-
strokeWidth={1.5}
|
|
45
|
-
d="M14 15L12 13L10 15"
|
|
46
18
|
/>
|
|
47
19
|
</Svg>
|
|
48
20
|
);
|
package/dist/icons/Flag.js
CHANGED
|
@@ -4,15 +4,15 @@ const SvgFlag = (props) => (
|
|
|
4
4
|
<Svg
|
|
5
5
|
fill="none"
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
-
viewBox="0 0
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
8
|
width={props.size}
|
|
9
9
|
height={props.size}
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
12
|
<Path
|
|
13
|
-
d="
|
|
14
|
-
stroke=
|
|
15
|
-
strokeWidth={1.
|
|
13
|
+
d="M5 14H19L14.5 9.5L19 5H5V21"
|
|
14
|
+
stroke="#344054"
|
|
15
|
+
strokeWidth={1.2}
|
|
16
16
|
strokeLinecap="round"
|
|
17
17
|
strokeLinejoin="round"
|
|
18
18
|
/>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgFontSize = (props) => (
|
|
4
|
+
<Svg
|
|
5
|
+
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
width={props.size}
|
|
9
|
+
height={props.size}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
d="M13.3125 17L8.15625 6L3 17M4.03125 14.8H12.2812M21 17L18.5006 12L16 17M16.4996 16.1667H20.4992"
|
|
14
|
+
stroke="#344054"
|
|
15
|
+
strokeWidth={1.2}
|
|
16
|
+
strokeLinecap="round"
|
|
17
|
+
strokeLinejoin="round"
|
|
18
|
+
/>
|
|
19
|
+
</Svg>
|
|
20
|
+
);
|
|
21
|
+
export default SvgFontSize;
|
package/dist/icons/FullScreen.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import Svg, {
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
3
|
const SvgFullScreen = (props) => (
|
|
4
4
|
<Svg
|
|
5
5
|
fill="none"
|
|
@@ -9,42 +9,13 @@ const SvgFullScreen = (props) => (
|
|
|
9
9
|
height={props.size}
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
/>
|
|
20
|
-
<Path
|
|
21
|
-
d="M9.39072 18.5368L4.46411 18.5362L4.46253 13.6096"
|
|
22
|
-
stroke={props.color}
|
|
23
|
-
strokeWidth={1.5}
|
|
24
|
-
strokeLinecap="round"
|
|
25
|
-
strokeLinejoin="round"
|
|
26
|
-
/>
|
|
27
|
-
<Path
|
|
28
|
-
d="M19.6982 13.6095L19.6971 18.5361L14.7705 18.5372"
|
|
29
|
-
stroke={props.color}
|
|
30
|
-
strokeWidth={1.5}
|
|
31
|
-
strokeLinecap="round"
|
|
32
|
-
strokeLinejoin="round"
|
|
33
|
-
/>
|
|
34
|
-
<Path
|
|
35
|
-
d="M4.46301 9.39069L4.46362 4.46409L9.39022 4.46251"
|
|
36
|
-
stroke={props.color}
|
|
37
|
-
strokeWidth={1.5}
|
|
38
|
-
strokeLinecap="round"
|
|
39
|
-
strokeLinejoin="round"
|
|
40
|
-
/>
|
|
41
|
-
<Rect x={8.64999} y={8.65} width={7.6} height={5.7} fill={props.color} />
|
|
42
|
-
</G>
|
|
43
|
-
<Defs>
|
|
44
|
-
<ClipPath id="clip0">
|
|
45
|
-
<Rect width={24} height={24} fill="white" />
|
|
46
|
-
</ClipPath>
|
|
47
|
-
</Defs>
|
|
12
|
+
<Path
|
|
13
|
+
d="M5 8.5V6.75C5 6.28587 5.18437 5.84075 5.51256 5.51256C5.84075 5.18437 6.28587 5 6.75 5H8.5M5 15.5V17.25C5 17.7141 5.18437 18.1592 5.51256 18.4874C5.84075 18.8156 6.28587 19 6.75 19H8.5M15.5 5H17.25C17.7141 5 18.1592 5.18437 18.4874 5.51256C18.8156 5.84075 19 6.28587 19 6.75V8.5M15.5 19H17.25C17.7141 19 18.1592 18.8156 18.4874 18.4874C18.8156 18.1592 19 17.7141 19 17.25V15.5"
|
|
14
|
+
stroke="#344054"
|
|
15
|
+
strokeWidth={1.2}
|
|
16
|
+
strokeLinecap="round"
|
|
17
|
+
strokeLinejoin="round"
|
|
18
|
+
/>
|
|
48
19
|
</Svg>
|
|
49
20
|
);
|
|
50
21
|
export default SvgFullScreen;
|
package/dist/icons/Gif.js
CHANGED
|
@@ -10,16 +10,9 @@ const SvgGif = (props) => (
|
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
12
|
<Path
|
|
13
|
-
d="M15.14 12.25H17.26M17.698 10.004H15.138V14.5M12.45 10V14.5M9.75 10H8.25C7.007 10 6 11.007 6 12.25C6 13.493 7.007 14.5 8.25 14.5H9.75V12.25H8.5"
|
|
14
|
-
stroke=
|
|
15
|
-
strokeWidth={1.
|
|
16
|
-
strokeLinecap="round"
|
|
17
|
-
strokeLinejoin="round"
|
|
18
|
-
/>
|
|
19
|
-
<Path
|
|
20
|
-
d="M16 21H8C5.239 21 3 18.761 3 16V8C3 5.239 5.239 3 8 3H16C18.761 3 21 5.239 21 8V16C21 18.761 18.761 21 16 21Z"
|
|
21
|
-
stroke={props.color}
|
|
22
|
-
strokeWidth={1.5}
|
|
13
|
+
d="M15.14 12.25H17.26M17.698 10.004H15.138V14.5M12.45 10V14.5M9.75 10H8.25C7.007 10 6 11.007 6 12.25C6 13.493 7.007 14.5 8.25 14.5H9.75V12.25H8.5M16 21H8C5.239 21 3 18.761 3 16V8C3 5.239 5.239 3 8 3H16C18.761 3 21 5.239 21 8V16C21 18.761 18.761 21 16 21Z"
|
|
14
|
+
stroke="#344054"
|
|
15
|
+
strokeWidth={1.2}
|
|
23
16
|
strokeLinecap="round"
|
|
24
17
|
strokeLinejoin="round"
|
|
25
18
|
/>
|
package/dist/icons/Hash.js
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
|
|
3
3
|
const SvgHash = (props) => (
|
|
4
4
|
<Svg
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
5
|
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
viewBox="0 0 24 24"
|
|
8
8
|
width={props.size}
|
|
9
9
|
height={props.size}
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
12
|
+
<G clipPath="url(#clip0_149_422)">
|
|
13
|
+
<Path
|
|
14
|
+
d="M5 9H19"
|
|
15
|
+
stroke="#344054"
|
|
16
|
+
strokeWidth={1.2}
|
|
17
|
+
strokeLinecap="round"
|
|
18
|
+
strokeLinejoin="round"
|
|
19
|
+
/>
|
|
20
|
+
<Path
|
|
21
|
+
d="M5 15H19"
|
|
22
|
+
stroke="#344054"
|
|
23
|
+
strokeWidth={1.2}
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
<Path
|
|
28
|
+
d="M11 4L7 20"
|
|
29
|
+
stroke="#344054"
|
|
30
|
+
strokeWidth={1.2}
|
|
31
|
+
strokeLinecap="round"
|
|
32
|
+
strokeLinejoin="round"
|
|
33
|
+
/>
|
|
34
|
+
<Path
|
|
35
|
+
d="M17 4L13 20"
|
|
36
|
+
stroke="#344054"
|
|
37
|
+
strokeWidth={1.2}
|
|
38
|
+
strokeLinecap="round"
|
|
39
|
+
strokeLinejoin="round"
|
|
40
|
+
/>
|
|
41
|
+
</G>
|
|
42
|
+
<Defs>
|
|
43
|
+
<ClipPath id="clip0_149_422">
|
|
44
|
+
<Rect width={24} height={24} fill="white" />
|
|
45
|
+
</ClipPath>
|
|
46
|
+
</Defs>
|
|
47
47
|
</Svg>
|
|
48
48
|
);
|
|
49
49
|
export default SvgHash;
|
package/dist/icons/Header.js
CHANGED
|
@@ -2,17 +2,17 @@ import * as React from "react";
|
|
|
2
2
|
import Svg, { Path } from "react-native-svg";
|
|
3
3
|
const SvgHeader = (props) => (
|
|
4
4
|
<Svg
|
|
5
|
-
viewBox="0 0 24 24"
|
|
6
5
|
fill="none"
|
|
7
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
8
|
width={props.size}
|
|
9
9
|
height={props.size}
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
12
|
<Path
|
|
13
13
|
d="M7 12H17M7 5V19M17 5V19M15 19H19M15 5H19M5 19H9M5 5H9"
|
|
14
|
-
stroke="
|
|
15
|
-
strokeWidth={1.
|
|
14
|
+
stroke="#344054"
|
|
15
|
+
strokeWidth={1.2}
|
|
16
16
|
strokeLinecap="round"
|
|
17
17
|
strokeLinejoin="round"
|
|
18
18
|
/>
|