@bigbinary/neeto-icons-rn 1.20.27 → 1.20.29
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/Alert.js +21 -0
- package/dist/elements/AndroidMockup.js +166 -0
- package/dist/elements/Arrow.js +21 -0
- package/dist/elements/Avatar.js +20 -0
- package/dist/elements/Browser.js +76 -0
- package/dist/elements/Button.js +27 -0
- package/dist/elements/Calendar.js +27 -0
- package/dist/elements/Checkbox.js +30 -0
- package/dist/elements/Circle.js +22 -0
- package/dist/elements/Dropdown.js +29 -0
- package/dist/elements/IPhoneMockup.js +123 -0
- package/dist/elements/Image.js +20 -0
- package/dist/elements/Input.js +23 -0
- package/dist/elements/Keyboard.js +18 -0
- package/dist/elements/Label.js +18 -0
- package/dist/elements/Line.js +14 -0
- package/dist/elements/LineChart.js +25 -0
- package/dist/elements/Link.js +21 -0
- package/dist/elements/List.js +27 -0
- package/dist/elements/Notes.js +36 -0
- package/dist/elements/Overlay.js +38 -0
- package/dist/elements/PieChart.js +26 -0
- package/dist/elements/Radio.js +21 -0
- package/dist/elements/Rectangle.js +18 -0
- package/dist/elements/Scrollbar.js +19 -0
- package/dist/elements/Search.js +36 -0
- package/dist/elements/Slider.js +32 -0
- package/dist/elements/Subtitle.js +18 -0
- package/dist/elements/Table.js +20 -0
- package/dist/elements/Tabs.js +27 -0
- package/dist/elements/TextBlock.js +24 -0
- package/dist/elements/Title.js +18 -0
- package/dist/elements/ToggleSwitch.js +41 -0
- package/dist/elements/Toolbar.js +24 -0
- package/dist/elements/Tooltip.js +32 -0
- package/dist/elements/Video.js +27 -0
- package/dist/elements/YesNo.js +32 -0
- package/dist/elements/index.js +37 -0
- package/dist/icons/Community.js +28 -0
- package/dist/icons/ProductSwitcher.js +22 -0
- package/dist/icons/index.js +2 -0
- package/dist/index.js +2 -1
- package/package.json +4 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgCommunity = (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(#Community_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="M20 11a9 9 0 1 0-9.968 8.948M2.6 8h16.8M2.6 14H9" />
|
|
19
|
+
<Path d="M10.5 2a17 17 0 0 0-1.886 13.802M11.5 2a17 17 0 0 1 2.549 8.01M21.556 22.667c0-.708-.238-1.386-.66-1.886-.421-.5-.994-.781-1.59-.781h-4.5c-.597 0-1.17.281-1.591.781s-.66 1.178-.66 1.886M17.056 18a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5" />
|
|
20
|
+
</G>
|
|
21
|
+
<Defs>
|
|
22
|
+
<ClipPath id="Community_svg__a">
|
|
23
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
24
|
+
</ClipPath>
|
|
25
|
+
</Defs>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
export default SvgCommunity;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Rect } from "react-native-svg";
|
|
3
|
+
const SvgProductSwitcher = (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 width={4} height={4} x={4} y={4} fill={props.color} rx={2} />
|
|
12
|
+
<Rect width={4} height={4} x={4} y={10} fill={props.color} rx={2} />
|
|
13
|
+
<Rect width={4} height={4} x={4} y={16} fill={props.color} rx={2} />
|
|
14
|
+
<Rect width={4} height={4} x={10} y={4} fill={props.color} rx={2} />
|
|
15
|
+
<Rect width={4} height={4} x={10} y={10} fill={props.color} rx={2} />
|
|
16
|
+
<Rect width={4} height={4} x={10} y={16} fill={props.color} rx={2} />
|
|
17
|
+
<Rect width={4} height={4} x={16} y={4} fill={props.color} rx={2} />
|
|
18
|
+
<Rect width={4} height={4} x={16} y={10} fill={props.color} rx={2} />
|
|
19
|
+
<Rect width={4} height={4} x={16} y={16} fill={props.color} rx={2} />
|
|
20
|
+
</Svg>
|
|
21
|
+
);
|
|
22
|
+
export default SvgProductSwitcher;
|
package/dist/icons/index.js
CHANGED
|
@@ -52,6 +52,7 @@ export { default as CodeBlock } from "./CodeBlock";
|
|
|
52
52
|
export { default as Collapse } from "./Collapse";
|
|
53
53
|
export { default as ColorPicker } from "./ColorPicker";
|
|
54
54
|
export { default as Column } from "./Column";
|
|
55
|
+
export { default as Community } from "./Community";
|
|
55
56
|
export { default as CompanyInfo } from "./CompanyInfo";
|
|
56
57
|
export { default as CompanyTags } from "./CompanyTags";
|
|
57
58
|
export { default as Computer } from "./Computer";
|
|
@@ -229,6 +230,7 @@ export { default as Plus } from "./Plus";
|
|
|
229
230
|
export { default as Prepend } from "./Prepend";
|
|
230
231
|
export { default as PreventDuplicate } from "./PreventDuplicate";
|
|
231
232
|
export { default as Print } from "./Print";
|
|
233
|
+
export { default as ProductSwitcher } from "./ProductSwitcher";
|
|
232
234
|
export { default as Puzzle } from "./Puzzle";
|
|
233
235
|
export { default as QrCode } from "./QrCode";
|
|
234
236
|
export { default as Quote } from "./Quote";
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as AppIcons from './appIcons';
|
|
2
|
+
import * as Elements from './elements';
|
|
2
3
|
import * as Icons from './icons';
|
|
3
4
|
import * as Logos from './logos';
|
|
4
5
|
import * as Misc from './misc';
|
|
5
6
|
import * as TypefaceLogos from './typefaceLogos';
|
|
6
|
-
export { AppIcons, Icons, Logos, Misc, TypefaceLogos }
|
|
7
|
+
export { AppIcons, Elements, Icons, Logos, Misc, TypefaceLogos }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-icons-rn",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.29",
|
|
4
4
|
"main": "./dist/icons/index.js",
|
|
5
5
|
"author": "sangameshsomawar",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,6 +20,9 @@
|
|
|
20
20
|
"./misc": {
|
|
21
21
|
"import": "./dist/misc"
|
|
22
22
|
},
|
|
23
|
+
"./elements": {
|
|
24
|
+
"elements": "./dist/elements"
|
|
25
|
+
},
|
|
23
26
|
".": {
|
|
24
27
|
"import": "./dist/icons"
|
|
25
28
|
}
|