@bigbinary/neeto-icons-rn 1.20.24 → 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/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/index.js +14 -0
- package/package.json +1 -1
|
@@ -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;
|
package/dist/icons/index.js
CHANGED
|
@@ -176,6 +176,13 @@ export { default as MailSend } from "./MailSend";
|
|
|
176
176
|
export { default as ManageCalendar } from "./ManageCalendar";
|
|
177
177
|
export { default as ManageTemplates } from "./ManageTemplates";
|
|
178
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";
|
|
179
186
|
export { default as Matrix } from "./Matrix";
|
|
180
187
|
export { default as MatrixDots } from "./MatrixDots";
|
|
181
188
|
export { default as MatrixDotsClear } from "./MatrixDotsClear";
|
|
@@ -206,6 +213,13 @@ export { default as NewChat } from "./NewChat";
|
|
|
206
213
|
export { default as Notes } from "./Notes";
|
|
207
214
|
export { default as Notification } from "./Notification";
|
|
208
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";
|
|
209
223
|
export { default as Pause } from "./Pause";
|
|
210
224
|
export { default as Phone } from "./Phone";
|
|
211
225
|
export { default as PhoneRing } from "./PhoneRing";
|