@bigbinary/neeto-icons-rn 1.20.33 → 1.20.35
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/TextArea.js +28 -0
- package/dist/elements/index.js +1 -0
- package/dist/misc/Callerdesk.js +29 -0
- package/dist/misc/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path, Rect } from "react-native-svg";
|
|
3
|
+
const SvgTextArea = (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="#101828"
|
|
13
|
+
strokeWidth={0.8}
|
|
14
|
+
d="M19 4v7"
|
|
15
|
+
data-dark-mode-color="true"
|
|
16
|
+
/>
|
|
17
|
+
<Rect
|
|
18
|
+
width={49}
|
|
19
|
+
height={23}
|
|
20
|
+
x={15.5}
|
|
21
|
+
y={1.5}
|
|
22
|
+
stroke="#101828"
|
|
23
|
+
data-dark-mode-color="true"
|
|
24
|
+
rx={2.9}
|
|
25
|
+
/>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
export default SvgTextArea;
|
package/dist/elements/index.js
CHANGED
|
@@ -28,6 +28,7 @@ export { default as Slider } from "./Slider";
|
|
|
28
28
|
export { default as Subtitle } from "./Subtitle";
|
|
29
29
|
export { default as Table } from "./Table";
|
|
30
30
|
export { default as Tabs } from "./Tabs";
|
|
31
|
+
export { default as TextArea } from "./TextArea";
|
|
31
32
|
export { default as TextBlock } from "./TextBlock";
|
|
32
33
|
export { default as Title } from "./Title";
|
|
33
34
|
export { default as ToggleSwitch } from "./ToggleSwitch";
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgCallerdesk = (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
|
+
fill="#ED3349"
|
|
13
|
+
d="M10.989 20.472c0-.663-.393-1.262-1-1.528a7.2 7.2 0 0 1-2.323-1.599 7.3 7.3 0 0 1-1.532-2.39q-.555-1.38-.555-2.997 0-1.481.488-2.828a7.1 7.1 0 0 1 1.397-2.357A6.66 6.66 0 0 1 9.94 5.051a1.66 1.66 0 0 0 1.048-1.547V.497a.448.448 0 0 0-.518-.443Q9.078.282 7.8.798a12.4 12.4 0 0 0-3.99 2.559 11.7 11.7 0 0 0-2.66 3.855q-.958 2.223-.96 4.78c0 1.707.315 3.267.944 4.749a11.9 11.9 0 0 0 2.593 3.855q1.65 1.634 3.871 2.576 1.374.582 2.878.805c.27.04.512-.173.512-.446v-3.059"
|
|
14
|
+
/>
|
|
15
|
+
<Path
|
|
16
|
+
fill="#231F20"
|
|
17
|
+
d="M11.906 1.18v.007c0 .509.388.932.895.978 5.04.453 8.988 4.688 8.988 9.845s-3.949 9.391-8.988 9.845a.98.98 0 0 0-.895.977v.008a.984.984 0 0 0 1.07.98c6.046-.54 10.787-5.622 10.787-11.81 0-6.187-4.74-11.268-10.788-11.809a.983.983 0 0 0-1.07.98z"
|
|
18
|
+
/>
|
|
19
|
+
<Path
|
|
20
|
+
fill="#231F20"
|
|
21
|
+
d="M19.81 12.009a7.906 7.906 0 0 0-6.795-7.828.98.98 0 0 0-1.11.975c0 .485.353.903.834.97a5.941 5.941 0 0 1 0 11.764.98.98 0 0 0-.834.971.98.98 0 0 0 1.11.975 7.91 7.91 0 0 0 6.795-7.827"
|
|
22
|
+
/>
|
|
23
|
+
<Path
|
|
24
|
+
fill="#231F20"
|
|
25
|
+
d="M15.858 12.009a3.953 3.953 0 0 0-3.513-3.928.4.4 0 0 0-.44.397v7.062c0 .236.205.423.44.397a3.95 3.95 0 0 0 3.513-3.928"
|
|
26
|
+
/>
|
|
27
|
+
</Svg>
|
|
28
|
+
);
|
|
29
|
+
export default SvgCallerdesk;
|
package/dist/misc/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { default as AmericanExpress } from "./AmericanExpress";
|
|
2
2
|
export { default as Apple } from "./Apple";
|
|
3
|
+
export { default as Callerdesk } from "./Callerdesk";
|
|
3
4
|
export { default as Chrome } from "./Chrome";
|
|
4
5
|
export { default as Daily } from "./Daily";
|
|
5
6
|
export { default as Discover } from "./Discover";
|