@bigbinary/neeto-icons-rn 1.20.34 → 1.20.36
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/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";
|