Skip to content

Commit 39f641b

Browse files
committed
Gnerate icons
1 parent 4ca43bc commit 39f641b

1,337 files changed

Lines changed: 6728 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

package.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "mrkpatchaa-react-native-ionicons",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "src/index.js",
6+
"scripts": {
7+
"gen:icons": "./src/generate_icons.sh node_modules/ionicons/dist/svg",
8+
"test": "echo \"Error: no test specified\" && exit 1"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/mrkpatchaa/react-native-ionicons.git"
13+
},
14+
"keywords": [],
15+
"author": "",
16+
"license": "ISC",
17+
"bugs": {
18+
"url": "https://github.com/mrkpatchaa/react-native-ionicons/issues"
19+
},
20+
"homepage": "https://github.com/mrkpatchaa/react-native-ionicons#readme",
21+
"dependencies": {
22+
"ionicons": "^6.1.1"
23+
}
24+
}

src/Icons/accessibility-outline.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Icons/accessibility-sharp.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Icons/accessibility.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Icons/add-circle-outline.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Icons/add-circle-sharp.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import * as React from "react";
2+
import Svg, { Path } from "react-native-svg";
3+
const SvgAddCircleSharp = props => <Svg xmlns="http://www.w3.org/2000/svg" className="add-circle-sharp_svg__ionicon" viewBox="0 0 512 512" width={24} height={24} {...props}><Path d="M256 48C141.31 48 48 141.31 48 256s93.31 208 208 208 208-93.31 208-208S370.69 48 256 48zm96 224h-80v80h-32v-80h-80v-32h80v-80h32v80h80z" /></Svg>;
4+
export default SvgAddCircleSharp;

src/Icons/add-circle.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Icons/add-outline.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import * as React from "react";
2+
import Svg, { Path } from "react-native-svg";
3+
const SvgAddOutline = props => <Svg xmlns="http://www.w3.org/2000/svg" className="add-outline_svg__ionicon" viewBox="0 0 512 512" width={24} height={24} {...props}><Path fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} d="M256 112v288m144-144H112" /></Svg>;
4+
export default SvgAddOutline;

src/Icons/add-sharp.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import * as React from "react";
2+
import Svg, { Path } from "react-native-svg";
3+
const SvgAddSharp = props => <Svg xmlns="http://www.w3.org/2000/svg" className="add-sharp_svg__ionicon" viewBox="0 0 512 512" width={24} height={24} {...props}><Path fill="none" stroke="currentColor" strokeLinecap="square" strokeLinejoin="round" strokeWidth={32} d="M256 112v288m144-144H112" /></Svg>;
4+
export default SvgAddSharp;

0 commit comments

Comments
 (0)