From fa09987c627f7e62d4c2004e8c23001366f4395c Mon Sep 17 00:00:00 2001 From: Tarun Mangukiya Date: Sat, 23 May 2020 12:50:39 +0530 Subject: [PATCH] release: 1.0.1 (#7) * release: 1.0.1 * fix: Updated Unicons Package * Auto-committed changes by create-pull-request action --- icons/uil-bing.js | 30 ++++++++++++ icons/uil-css3-simple.js | 30 ++++++++++++ icons/uil-discord.js | 30 ++++++++++++ icons/uil-draggabledots.js | 30 ++++++++++++ icons/uil-file-graph.js | 30 ++++++++++++ icons/uil-html5-alt.js | 30 ++++++++++++ icons/uil-html5.js | 30 ++++++++++++ icons/uil-lira-sign.js | 30 ++++++++++++ icons/uil-programming-language.js | 30 ++++++++++++ icons/uil-shopping-cart.js | 2 +- icons/{uil-exit.js => uil-signout.js} | 8 ++-- icons/uil-slider-h-range.js | 30 ++++++++++++ icons/uil-slider-h.js | 30 ++++++++++++ icons/uil-wordpress-simple.js | 30 ++++++++++++ icons/uil-wordpress.js | 30 ++++++++++++ index.js | 15 +++++- package-lock.json | 67 +++++++++++++++++---------- package.json | 4 +- 18 files changed, 454 insertions(+), 32 deletions(-) create mode 100644 icons/uil-bing.js create mode 100644 icons/uil-css3-simple.js create mode 100644 icons/uil-discord.js create mode 100644 icons/uil-draggabledots.js create mode 100644 icons/uil-file-graph.js create mode 100644 icons/uil-html5-alt.js create mode 100644 icons/uil-html5.js create mode 100644 icons/uil-lira-sign.js create mode 100644 icons/uil-programming-language.js rename icons/{uil-exit.js => uil-signout.js} (88%) create mode 100644 icons/uil-slider-h-range.js create mode 100644 icons/uil-slider-h.js create mode 100644 icons/uil-wordpress-simple.js create mode 100644 icons/uil-wordpress.js diff --git a/icons/uil-bing.js b/icons/uil-bing.js new file mode 100644 index 0000000..e8c2fae --- /dev/null +++ b/icons/uil-bing.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilBing = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilBing.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilBing.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilBing; diff --git a/icons/uil-css3-simple.js b/icons/uil-css3-simple.js new file mode 100644 index 0000000..f82e9e4 --- /dev/null +++ b/icons/uil-css3-simple.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilCss3Simple = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilCss3Simple.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilCss3Simple.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilCss3Simple; diff --git a/icons/uil-discord.js b/icons/uil-discord.js new file mode 100644 index 0000000..ec7818a --- /dev/null +++ b/icons/uil-discord.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilDiscord = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilDiscord.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilDiscord.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilDiscord; diff --git a/icons/uil-draggabledots.js b/icons/uil-draggabledots.js new file mode 100644 index 0000000..1ec0526 --- /dev/null +++ b/icons/uil-draggabledots.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilDraggabledots = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilDraggabledots.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilDraggabledots.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilDraggabledots; diff --git a/icons/uil-file-graph.js b/icons/uil-file-graph.js new file mode 100644 index 0000000..537ac2e --- /dev/null +++ b/icons/uil-file-graph.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilFileGraph = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilFileGraph.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilFileGraph.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilFileGraph; diff --git a/icons/uil-html5-alt.js b/icons/uil-html5-alt.js new file mode 100644 index 0000000..a5429c9 --- /dev/null +++ b/icons/uil-html5-alt.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilHtml5Alt = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilHtml5Alt.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilHtml5Alt.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilHtml5Alt; diff --git a/icons/uil-html5.js b/icons/uil-html5.js new file mode 100644 index 0000000..cbb37ee --- /dev/null +++ b/icons/uil-html5.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilHtml5 = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilHtml5.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilHtml5.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilHtml5; diff --git a/icons/uil-lira-sign.js b/icons/uil-lira-sign.js new file mode 100644 index 0000000..9d23951 --- /dev/null +++ b/icons/uil-lira-sign.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilLiraSign = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilLiraSign.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilLiraSign.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilLiraSign; diff --git a/icons/uil-programming-language.js b/icons/uil-programming-language.js new file mode 100644 index 0000000..c4412a0 --- /dev/null +++ b/icons/uil-programming-language.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilProgrammingLanguage = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilProgrammingLanguage.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilProgrammingLanguage.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilProgrammingLanguage; diff --git a/icons/uil-shopping-cart.js b/icons/uil-shopping-cart.js index 456c372..dd05911 100644 --- a/icons/uil-shopping-cart.js +++ b/icons/uil-shopping-cart.js @@ -12,7 +12,7 @@ const UilShoppingCart = props => { fill={color} {...otherProps} > - + ); }; diff --git a/icons/uil-exit.js b/icons/uil-signout.js similarity index 88% rename from icons/uil-exit.js rename to icons/uil-signout.js index edc602d..de525e9 100644 --- a/icons/uil-exit.js +++ b/icons/uil-signout.js @@ -2,7 +2,7 @@ import React from "react"; import Svg, { Path } from "react-native-svg"; import PropTypes from "prop-types"; -const UilExit = props => { +const UilSignout = props => { const { color, size, ...otherProps } = props; return ( { ); }; -UilExit.propTypes = { +UilSignout.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) }; -UilExit.defaultProps = { +UilSignout.defaultProps = { color: "currentColor", size: "24" }; -export default UilExit; +export default UilSignout; diff --git a/icons/uil-slider-h-range.js b/icons/uil-slider-h-range.js new file mode 100644 index 0000000..a3c7b91 --- /dev/null +++ b/icons/uil-slider-h-range.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilSliderHRange = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilSliderHRange.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilSliderHRange.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilSliderHRange; diff --git a/icons/uil-slider-h.js b/icons/uil-slider-h.js new file mode 100644 index 0000000..6df7173 --- /dev/null +++ b/icons/uil-slider-h.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilSliderH = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilSliderH.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilSliderH.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilSliderH; diff --git a/icons/uil-wordpress-simple.js b/icons/uil-wordpress-simple.js new file mode 100644 index 0000000..f23ca04 --- /dev/null +++ b/icons/uil-wordpress-simple.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilWordpressSimple = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilWordpressSimple.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilWordpressSimple.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilWordpressSimple; diff --git a/icons/uil-wordpress.js b/icons/uil-wordpress.js new file mode 100644 index 0000000..544846d --- /dev/null +++ b/icons/uil-wordpress.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilWordpress = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilWordpress.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilWordpress.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilWordpress; diff --git a/index.js b/index.js index 3db0554..6c4dd22 100644 --- a/index.js +++ b/index.js @@ -127,6 +127,7 @@ export { default as UilBell } from './icons/uil-bell' export { default as UilBellSchool } from './icons/uil-bell-school' export { default as UilBellSlash } from './icons/uil-bell-slash' export { default as UilBill } from './icons/uil-bill' +export { default as UilBing } from './icons/uil-bing' export { default as UilBitcoin } from './icons/uil-bitcoin' export { default as UilBitcoinAlt } from './icons/uil-bitcoin-alt' export { default as UilBitcoinCircle } from './icons/uil-bitcoin-circle' @@ -377,6 +378,7 @@ export { default as UilCropAltRotateRight } from './icons/uil-crop-alt-rotate-ri export { default as UilCrosshair } from './icons/uil-crosshair' export { default as UilCrosshairAlt } from './icons/uil-crosshair-alt' export { default as UilCrosshairs } from './icons/uil-crosshairs' +export { default as UilCss3Simple } from './icons/uil-css3-simple' export { default as UilCube } from './icons/uil-cube' export { default as UilDashboard } from './icons/uil-dashboard' export { default as UilDataSharing } from './icons/uil-data-sharing' @@ -401,6 +403,7 @@ export { default as UilDiceThree } from './icons/uil-dice-three' export { default as UilDiceTwo } from './icons/uil-dice-two' export { default as UilDirection } from './icons/uil-direction' export { default as UilDirections } from './icons/uil-directions' +export { default as UilDiscord } from './icons/uil-discord' export { default as UilDizzyMeh } from './icons/uil-dizzy-meh' export { default as UilDna } from './icons/uil-dna' export { default as UilDocumentInfo } from './icons/uil-document-info' @@ -411,6 +414,7 @@ export { default as UilDollarAlt } from './icons/uil-dollar-alt' export { default as UilDollarSign } from './icons/uil-dollar-sign' export { default as UilDollarSignAlt } from './icons/uil-dollar-sign-alt' export { default as UilDownloadAlt } from './icons/uil-download-alt' +export { default as UilDraggabledots } from './icons/uil-draggabledots' export { default as UilDribbble } from './icons/uil-dribbble' export { default as UilDrill } from './icons/uil-drill' export { default as UilDropbox } from './icons/uil-dropbox' @@ -458,7 +462,6 @@ export { default as UilExclamationCircle } from './icons/uil-exclamation-circle' export { default as UilExclamationOctagon } from './icons/uil-exclamation-octagon' export { default as UilExclamationTriangle } from './icons/uil-exclamation-triangle' export { default as UilExclude } from './icons/uil-exclude' -export { default as UilExit } from './icons/uil-exit' export { default as UilExpandAlt } from './icons/uil-expand-alt' export { default as UilExpandArrows } from './icons/uil-expand-arrows' export { default as UilExpandArrowsAlt } from './icons/uil-expand-arrows-alt' @@ -495,6 +498,7 @@ export { default as UilFileEditAlt } from './icons/uil-file-edit-alt' export { default as UilFileExclamation } from './icons/uil-file-exclamation' export { default as UilFileExclamationAlt } from './icons/uil-file-exclamation-alt' export { default as UilFileExport } from './icons/uil-file-export' +export { default as UilFileGraph } from './icons/uil-file-graph' export { default as UilFileHeart } from './icons/uil-file-heart' export { default as UilFileImport } from './icons/uil-file-import' export { default as UilFileInfoAlt } from './icons/uil-file-info-alt' @@ -616,6 +620,8 @@ export { default as UilHourglass } from './icons/uil-hourglass' export { default as UilHouseUser } from './icons/uil-house-user' export { default as UilHtml3 } from './icons/uil-html3' export { default as UilHtml3Alt } from './icons/uil-html3-alt' +export { default as UilHtml5 } from './icons/uil-html5' +export { default as UilHtml5Alt } from './icons/uil-html5-alt' export { default as UilHunting } from './icons/uil-hunting' export { default as UilImage } from './icons/uil-image' export { default as UilImageAltSlash } from './icons/uil-image-alt-slash' @@ -691,6 +697,7 @@ export { default as UilLinkBroken } from './icons/uil-link-broken' export { default as UilLinkH } from './icons/uil-link-h' export { default as UilLinkedin } from './icons/uil-linkedin' export { default as UilLinkedinAlt } from './icons/uil-linkedin-alt' +export { default as UilLiraSign } from './icons/uil-lira-sign' export { default as UilListUiAlt } from './icons/uil-list-ui-alt' export { default as UilListUl } from './icons/uil-list-ul' export { default as UilLocationArrow } from './icons/uil-location-arrow' @@ -845,6 +852,7 @@ export { default as UilPrint } from './icons/uil-print' export { default as UilPrintSlash } from './icons/uil-print-slash' export { default as UilProcess } from './icons/uil-process' export { default as UilProcessor } from './icons/uil-processor' +export { default as UilProgrammingLanguage } from './icons/uil-programming-language' export { default as UilPump } from './icons/uil-pump' export { default as UilPuzzlePiece } from './icons/uil-puzzle-piece' export { default as UilQrcodeScan } from './icons/uil-qrcode-scan' @@ -932,6 +940,7 @@ export { default as UilSignal } from './icons/uil-signal' export { default as UilSignalAlt } from './icons/uil-signal-alt' export { default as UilSignalAlt3 } from './icons/uil-signal-alt-3' export { default as UilSignin } from './icons/uil-signin' +export { default as UilSignout } from './icons/uil-signout' export { default as UilSilence } from './icons/uil-silence' export { default as UilSilentSquint } from './icons/uil-silent-squint' export { default as UilSimCard } from './icons/uil-sim-card' @@ -943,6 +952,8 @@ export { default as UilSkype } from './icons/uil-skype' export { default as UilSkypeAlt } from './icons/uil-skype-alt' export { default as UilSlack } from './icons/uil-slack' export { default as UilSlackAlt } from './icons/uil-slack-alt' +export { default as UilSliderH } from './icons/uil-slider-h' +export { default as UilSliderHRange } from './icons/uil-slider-h-range' export { default as UilSlidersV } from './icons/uil-sliders-v' export { default as UilSlidersVAlt } from './icons/uil-sliders-v-alt' export { default as UilSmile } from './icons/uil-smile' @@ -1147,6 +1158,8 @@ export { default as UilWindowMaximize } from './icons/uil-window-maximize' export { default as UilWindowSection } from './icons/uil-window-section' export { default as UilWindsock } from './icons/uil-windsock' export { default as UilWindy } from './icons/uil-windy' +export { default as UilWordpress } from './icons/uil-wordpress' +export { default as UilWordpressSimple } from './icons/uil-wordpress-simple' export { default as UilWrapText } from './icons/uil-wrap-text' export { default as UilWrench } from './icons/uil-wrench' export { default as UilX } from './icons/uil-x' diff --git a/package-lock.json b/package-lock.json index 2547def..b784327 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@iconscout/react-native-unicons", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -856,9 +856,9 @@ } }, "@iconscout/unicons": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/@iconscout/unicons/-/unicons-2.1.8.tgz", - "integrity": "sha512-d/efYu7xd1iXusShCRPhAzKaqEg3EB0StwYmFZbBjShpwRjSeIEeq7Z7lzA8805/dqGH7O/ntTrYr5olZxCppw==", + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@iconscout/unicons/-/unicons-2.1.9.tgz", + "integrity": "sha512-xqxybtdb3Q8uXVteYMdQjF1RFybMdxbL8YsYYCSbBdR9VT8wWevow6RL6mXOUwEF18t75lPg9GzM822ihzCIaA==", "dev": true, "requires": { "async": "^2.6.1", @@ -951,9 +951,9 @@ "dev": true }, "@types/q": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.2.tgz", - "integrity": "sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==", + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", + "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==", "dev": true }, "absolute-path": { @@ -2818,7 +2818,8 @@ "ansi-regex": { "version": "2.1.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "aproba": { "version": "1.2.0", @@ -2839,12 +2840,14 @@ "balanced-match": { "version": "1.0.0", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "brace-expansion": { "version": "1.1.11", "bundled": true, "dev": true, + "optional": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -2859,17 +2862,20 @@ "code-point-at": { "version": "1.1.0", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "concat-map": { "version": "0.0.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "console-control-strings": { "version": "1.1.0", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "core-util-is": { "version": "1.0.2", @@ -2986,7 +2992,8 @@ "inherits": { "version": "2.0.3", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "ini": { "version": "1.3.5", @@ -2998,6 +3005,7 @@ "version": "1.0.0", "bundled": true, "dev": true, + "optional": true, "requires": { "number-is-nan": "^1.0.0" } @@ -3012,6 +3020,7 @@ "version": "3.0.4", "bundled": true, "dev": true, + "optional": true, "requires": { "brace-expansion": "^1.1.7" } @@ -3019,12 +3028,14 @@ "minimist": { "version": "0.0.8", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "minipass": { "version": "2.3.5", "bundled": true, "dev": true, + "optional": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" @@ -3043,6 +3054,7 @@ "version": "0.5.1", "bundled": true, "dev": true, + "optional": true, "requires": { "minimist": "0.0.8" } @@ -3123,7 +3135,8 @@ "number-is-nan": { "version": "1.0.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "object-assign": { "version": "4.1.1", @@ -3135,6 +3148,7 @@ "version": "1.4.0", "bundled": true, "dev": true, + "optional": true, "requires": { "wrappy": "1" } @@ -3220,7 +3234,8 @@ "safe-buffer": { "version": "5.1.2", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "safer-buffer": { "version": "2.1.2", @@ -3256,6 +3271,7 @@ "version": "1.0.2", "bundled": true, "dev": true, + "optional": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -3275,6 +3291,7 @@ "version": "3.0.1", "bundled": true, "dev": true, + "optional": true, "requires": { "ansi-regex": "^2.0.0" } @@ -3318,12 +3335,14 @@ "wrappy": { "version": "1.0.2", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "yallist": { "version": "3.0.3", "bundled": true, - "dev": true + "dev": true, + "optional": true } } }, @@ -4777,9 +4796,9 @@ } }, "needle": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/needle/-/needle-2.4.1.tgz", - "integrity": "sha512-x/gi6ijr4B7fwl6WYL9FwlCvRQKGlUNvnceho8wxkwXqN8jvVmmmATTmZPRRG7b/yC1eode26C2HO9jl78Du9g==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.5.0.tgz", + "integrity": "sha512-o/qITSDR0JCyCKEQ1/1bnUXMmznxabbwi/Y4WwJElf+evwJNFNwIDMCCt5IigFVxgeGBJESLohGtIS9gEzo1fA==", "dev": true, "requires": { "debug": "^3.2.6", @@ -5067,9 +5086,9 @@ } }, "open": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/open/-/open-7.0.3.tgz", - "integrity": "sha512-sP2ru2v0P290WFfv49Ap8MF6PkzGNnGlAwHweB4WR4mr5d2d0woiCluUeJ218w7/+PmoBy9JmYgD5A4mLcWOFA==", + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/open/-/open-7.0.4.tgz", + "integrity": "sha512-brSA+/yq+b08Hsr4c8fsEW2CRzk1BmfN3SAK/5VCHQ9bdoZJ4qa/+AfR0xHjlbbZUyPkUHs1b8x1RqdyZdkVqQ==", "dev": true, "requires": { "is-docker": "^2.0.0", diff --git a/package.json b/package.json index 936154a..baecc16 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@iconscout/react-native-unicons", "description": "Unicons - 1000+ vector icons as easy to use vector React Native Components", - "version": "1.0.0", + "version": "1.0.1", "main": "index.js", "scripts": { "generate": "node ./build/generate.js" @@ -35,7 +35,7 @@ "react-native-svg": "^9.5.3" }, "devDependencies": { - "@iconscout/unicons": "^2.1.8", + "@iconscout/unicons": "^2.1.9", "cheerio": "^1.0.0-rc.3", "fs-plus": "^3.1.1", "react": "^16.5.0",