From 74fd1af13dd0ede19183285dcb5467f16d098c9e Mon Sep 17 00:00:00 2001 From: imzedi <48899828+imzedi@users.noreply.github.com> Date: Tue, 20 May 2025 06:35:53 +0000 Subject: [PATCH] [create-pull-request] automated change --- icons/{uil-calender.js => uil-calendar.js} | 8 ++--- ...ud-moon-tear.js => uil-cloud-moon-tear.js} | 8 ++--- ...{uil-corner-up-left-alt.js => uil-left.js} | 8 ++--- icons/uil-outline.js | 30 +++++++++++++++++++ icons/{uil-bed.js => uil-sleep.js} | 8 ++--- icons/uil-solid.js | 30 +++++++++++++++++++ ...{uil-arrow-growth.js => uil-statistics.js} | 8 ++--- .../{uil-baby-carriage.js => uil-stroller.js} | 8 ++--- .../{uil-browser.js => uil-window-restore.js} | 8 ++--- index.js | 16 +++++----- package-lock.json | 2 +- package.json | 2 +- 12 files changed, 99 insertions(+), 37 deletions(-) rename icons/{uil-calender.js => uil-calendar.js} (86%) rename icons/{uil-forecastcloud-moon-tear.js => uil-cloud-moon-tear.js} (88%) rename icons/{uil-corner-up-left-alt.js => uil-left.js} (82%) create mode 100644 icons/uil-outline.js rename icons/{uil-bed.js => uil-sleep.js} (86%) create mode 100644 icons/uil-solid.js rename icons/{uil-arrow-growth.js => uil-statistics.js} (84%) rename icons/{uil-baby-carriage.js => uil-stroller.js} (87%) rename icons/{uil-browser.js => uil-window-restore.js} (84%) diff --git a/icons/uil-calender.js b/icons/uil-calendar.js similarity index 86% rename from icons/uil-calender.js rename to icons/uil-calendar.js index 28aecd1..38d3745 100644 --- a/icons/uil-calender.js +++ b/icons/uil-calendar.js @@ -2,7 +2,7 @@ import React from "react"; import Svg, { Path } from "react-native-svg"; import PropTypes from "prop-types"; -const UilCalender = props => { +const UilCalendar = props => { const { color, size, ...otherProps } = props; return ( { ); }; -UilCalender.propTypes = { +UilCalendar.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) }; -UilCalender.defaultProps = { +UilCalendar.defaultProps = { color: "currentColor", size: "24" }; -export default UilCalender; +export default UilCalendar; diff --git a/icons/uil-forecastcloud-moon-tear.js b/icons/uil-cloud-moon-tear.js similarity index 88% rename from icons/uil-forecastcloud-moon-tear.js rename to icons/uil-cloud-moon-tear.js index 8eaf7d7..2161623 100644 --- a/icons/uil-forecastcloud-moon-tear.js +++ b/icons/uil-cloud-moon-tear.js @@ -2,7 +2,7 @@ import React from "react"; import Svg, { Path } from "react-native-svg"; import PropTypes from "prop-types"; -const UilForecastcloudMoonTear = props => { +const UilCloudMoonTear = props => { const { color, size, ...otherProps } = props; return ( { ); }; -UilForecastcloudMoonTear.propTypes = { +UilCloudMoonTear.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) }; -UilForecastcloudMoonTear.defaultProps = { +UilCloudMoonTear.defaultProps = { color: "currentColor", size: "24" }; -export default UilForecastcloudMoonTear; +export default UilCloudMoonTear; diff --git a/icons/uil-corner-up-left-alt.js b/icons/uil-left.js similarity index 82% rename from icons/uil-corner-up-left-alt.js rename to icons/uil-left.js index 5139905..0002601 100644 --- a/icons/uil-corner-up-left-alt.js +++ b/icons/uil-left.js @@ -2,7 +2,7 @@ import React from "react"; import Svg, { Path } from "react-native-svg"; import PropTypes from "prop-types"; -const UilCornerUpLeftAlt = props => { +const UilLeft = props => { const { color, size, ...otherProps } = props; return ( { ); }; -UilCornerUpLeftAlt.propTypes = { +UilLeft.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) }; -UilCornerUpLeftAlt.defaultProps = { +UilLeft.defaultProps = { color: "currentColor", size: "24" }; -export default UilCornerUpLeftAlt; +export default UilLeft; diff --git a/icons/uil-outline.js b/icons/uil-outline.js new file mode 100644 index 0000000..82f77d5 --- /dev/null +++ b/icons/uil-outline.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilOutline = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilOutline.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilOutline.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilOutline; diff --git a/icons/uil-bed.js b/icons/uil-sleep.js similarity index 86% rename from icons/uil-bed.js rename to icons/uil-sleep.js index f0cebde..b876b02 100644 --- a/icons/uil-bed.js +++ b/icons/uil-sleep.js @@ -2,7 +2,7 @@ import React from "react"; import Svg, { Path } from "react-native-svg"; import PropTypes from "prop-types"; -const UilBed = props => { +const UilSleep = props => { const { color, size, ...otherProps } = props; return ( { ); }; -UilBed.propTypes = { +UilSleep.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) }; -UilBed.defaultProps = { +UilSleep.defaultProps = { color: "currentColor", size: "24" }; -export default UilBed; +export default UilSleep; diff --git a/icons/uil-solid.js b/icons/uil-solid.js new file mode 100644 index 0000000..f287b94 --- /dev/null +++ b/icons/uil-solid.js @@ -0,0 +1,30 @@ +import React from "react"; +import Svg, { Path } from "react-native-svg"; +import PropTypes from "prop-types"; + +const UilSolid = props => { + const { color, size, ...otherProps } = props; + return ( + + + + ); +}; + +UilSolid.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) +}; + +UilSolid.defaultProps = { + color: "currentColor", + size: "24" +}; + +export default UilSolid; diff --git a/icons/uil-arrow-growth.js b/icons/uil-statistics.js similarity index 84% rename from icons/uil-arrow-growth.js rename to icons/uil-statistics.js index 8ec2fb7..38f7bf9 100644 --- a/icons/uil-arrow-growth.js +++ b/icons/uil-statistics.js @@ -2,7 +2,7 @@ import React from "react"; import Svg, { Path } from "react-native-svg"; import PropTypes from "prop-types"; -const UilArrowGrowth = props => { +const UilStatistics = props => { const { color, size, ...otherProps } = props; return ( { ); }; -UilArrowGrowth.propTypes = { +UilStatistics.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) }; -UilArrowGrowth.defaultProps = { +UilStatistics.defaultProps = { color: "currentColor", size: "24" }; -export default UilArrowGrowth; +export default UilStatistics; diff --git a/icons/uil-baby-carriage.js b/icons/uil-stroller.js similarity index 87% rename from icons/uil-baby-carriage.js rename to icons/uil-stroller.js index faf7cd6..107d3cf 100644 --- a/icons/uil-baby-carriage.js +++ b/icons/uil-stroller.js @@ -2,7 +2,7 @@ import React from "react"; import Svg, { Path } from "react-native-svg"; import PropTypes from "prop-types"; -const UilBabyCarriage = props => { +const UilStroller = props => { const { color, size, ...otherProps } = props; return ( { ); }; -UilBabyCarriage.propTypes = { +UilStroller.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) }; -UilBabyCarriage.defaultProps = { +UilStroller.defaultProps = { color: "currentColor", size: "24" }; -export default UilBabyCarriage; +export default UilStroller; diff --git a/icons/uil-browser.js b/icons/uil-window-restore.js similarity index 84% rename from icons/uil-browser.js rename to icons/uil-window-restore.js index 3facb88..3dc0f8f 100644 --- a/icons/uil-browser.js +++ b/icons/uil-window-restore.js @@ -2,7 +2,7 @@ import React from "react"; import Svg, { Path } from "react-native-svg"; import PropTypes from "prop-types"; -const UilBrowser = props => { +const UilWindowRestore = props => { const { color, size, ...otherProps } = props; return ( { ); }; -UilBrowser.propTypes = { +UilWindowRestore.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) }; -UilBrowser.defaultProps = { +UilWindowRestore.defaultProps = { color: "currentColor", size: "24" }; -export default UilBrowser; +export default UilWindowRestore; diff --git a/index.js b/index.js index 22552d7..09cc9d1 100644 --- a/index.js +++ b/index.js @@ -71,7 +71,6 @@ export { default as UilArrowDownLeft } from './icons/uil-arrow-down-left' export { default as UilArrowDownRight } from './icons/uil-arrow-down-right' export { default as UilArrowFromRight } from './icons/uil-arrow-from-right' export { default as UilArrowFromTop } from './icons/uil-arrow-from-top' -export { default as UilArrowGrowth } from './icons/uil-arrow-growth' export { default as UilArrowLeft } from './icons/uil-arrow-left' export { default as UilArrowRandom } from './icons/uil-arrow-random' export { default as UilArrowResizeDiagonal } from './icons/uil-arrow-resize-diagonal' @@ -102,7 +101,6 @@ export { default as UilAtom } from './icons/uil-atom' export { default as UilAutoFlash } from './icons/uil-auto-flash' export { default as UilAward } from './icons/uil-award' export { default as UilAwardAlt } from './icons/uil-award-alt' -export { default as UilBabyCarriage } from './icons/uil-baby-carriage' export { default as UilBackpack } from './icons/uil-backpack' export { default as UilBackspace } from './icons/uil-backspace' export { default as UilBackward } from './icons/uil-backward' @@ -119,7 +117,6 @@ export { default as UilBasketballHoop } from './icons/uil-basketball-hoop' export { default as UilBath } from './icons/uil-bath' export { default as UilBatteryBolt } from './icons/uil-battery-bolt' export { default as UilBatteryEmpty } from './icons/uil-battery-empty' -export { default as UilBed } from './icons/uil-bed' export { default as UilBedDouble } from './icons/uil-bed-double' export { default as UilBehance } from './icons/uil-behance' export { default as UilBehanceAlt } from './icons/uil-behance-alt' @@ -174,7 +171,6 @@ export { default as UilBrightnessMinus } from './icons/uil-brightness-minus' export { default as UilBrightnessPlus } from './icons/uil-brightness-plus' export { default as UilBringBottom } from './icons/uil-bring-bottom' export { default as UilBringFront } from './icons/uil-bring-front' -export { default as UilBrowser } from './icons/uil-browser' export { default as UilBrushAlt } from './icons/uil-brush-alt' export { default as UilBug } from './icons/uil-bug' export { default as UilBuilding } from './icons/uil-building' @@ -184,9 +180,9 @@ export { default as UilBusAlt } from './icons/uil-bus-alt' export { default as UilBusSchool } from './icons/uil-bus-school' export { default as UilCalculator } from './icons/uil-calculator' export { default as UilCalculatorAlt } from './icons/uil-calculator-alt' +export { default as UilCalendar } from './icons/uil-calendar' export { default as UilCalendarAlt } from './icons/uil-calendar-alt' export { default as UilCalendarSlash } from './icons/uil-calendar-slash' -export { default as UilCalender } from './icons/uil-calender' export { default as UilCalling } from './icons/uil-calling' export { default as UilCamera } from './icons/uil-camera' export { default as UilCameraChange } from './icons/uil-camera-change' @@ -259,6 +255,7 @@ export { default as UilCloudMoonHail } from './icons/uil-cloud-moon-hail' export { default as UilCloudMoonMeatball } from './icons/uil-cloud-moon-meatball' export { default as UilCloudMoonRain } from './icons/uil-cloud-moon-rain' export { default as UilCloudMoonShowers } from './icons/uil-cloud-moon-showers' +export { default as UilCloudMoonTear } from './icons/uil-cloud-moon-tear' export { default as UilCloudQuestion } from './icons/uil-cloud-question' export { default as UilCloudRain } from './icons/uil-cloud-rain' export { default as UilCloudRainSun } from './icons/uil-cloud-rain-sun' @@ -363,7 +360,6 @@ export { default as UilCornerDownRightAlt } from './icons/uil-corner-down-right- export { default as UilCornerLeftDown } from './icons/uil-corner-left-down' export { default as UilCornerRightDown } from './icons/uil-corner-right-down' export { default as UilCornerUpLeft } from './icons/uil-corner-up-left' -export { default as UilCornerUpLeftAlt } from './icons/uil-corner-up-left-alt' export { default as UilCornerUpRight } from './icons/uil-corner-up-right' export { default as UilCornerUpRightAlt } from './icons/uil-corner-up-right-alt' export { default as UilCoronavirus } from './icons/uil-coronavirus' @@ -567,7 +563,6 @@ export { default as UilFont } from './icons/uil-font' export { default as UilFootball } from './icons/uil-football' export { default as UilFootballAmerican } from './icons/uil-football-american' export { default as UilFootballBall } from './icons/uil-football-ball' -export { default as UilForecastcloudMoonTear } from './icons/uil-forecastcloud-moon-tear' export { default as UilForwadedCall } from './icons/uil-forwaded-call' export { default as UilForward } from './icons/uil-forward' export { default as UilFrown } from './icons/uil-frown' @@ -695,6 +690,7 @@ export { default as UilLayerGroupSlash } from './icons/uil-layer-group-slash' export { default as UilLayers } from './icons/uil-layers' export { default as UilLayersAlt } from './icons/uil-layers-alt' export { default as UilLayersSlash } from './icons/uil-layers-slash' +export { default as UilLeft } from './icons/uil-left' export { default as UilLeftArrowFromLeft } from './icons/uil-left-arrow-from-left' export { default as UilLeftArrowToLeft } from './icons/uil-left-arrow-to-left' export { default as UilLeftIndent } from './icons/uil-left-indent' @@ -817,6 +813,7 @@ export { default as UilOkta } from './icons/uil-okta' export { default as UilOpera } from './icons/uil-opera' export { default as UilOperaAlt } from './icons/uil-opera-alt' export { default as UilOutgoingCall } from './icons/uil-outgoing-call' +export { default as UilOutline } from './icons/uil-outline' export { default as UilPackage } from './icons/uil-package' export { default as UilPadlock } from './icons/uil-padlock' export { default as UilPagelines } from './icons/uil-pagelines' @@ -982,6 +979,7 @@ 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 UilSleep } from './icons/uil-sleep' 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' @@ -1000,6 +998,7 @@ export { default as UilSnowFlake } from './icons/uil-snow-flake' export { default as UilSnowflake } from './icons/uil-snowflake' export { default as UilSnowflakeAlt } from './icons/uil-snowflake-alt' export { default as UilSocialDistancing } from './icons/uil-social-distancing' +export { default as UilSolid } from './icons/uil-solid' export { default as UilSort } from './icons/uil-sort' export { default as UilSortAmountDown } from './icons/uil-sort-amount-down' export { default as UilSortAmountUp } from './icons/uil-sort-amount-up' @@ -1016,6 +1015,7 @@ export { default as UilSquareShape } from './icons/uil-square-shape' export { default as UilSquint } from './icons/uil-squint' export { default as UilStar } from './icons/uil-star' export { default as UilStarHalfAlt } from './icons/uil-star-half-alt' +export { default as UilStatistics } from './icons/uil-statistics' export { default as UilStepBackward } from './icons/uil-step-backward' export { default as UilStepBackwardAlt } from './icons/uil-step-backward-alt' export { default as UilStepBackwardCircle } from './icons/uil-step-backward-circle' @@ -1030,6 +1030,7 @@ export { default as UilStoreAlt } from './icons/uil-store-alt' export { default as UilStoreSlash } from './icons/uil-store-slash' export { default as UilStreering } from './icons/uil-streering' export { default as UilStretcher } from './icons/uil-stretcher' +export { default as UilStroller } from './icons/uil-stroller' export { default as UilSubject } from './icons/uil-subject' export { default as UilSubway } from './icons/uil-subway' export { default as UilSubwayAlt } from './icons/uil-subway-alt' @@ -1188,6 +1189,7 @@ export { default as UilWindSun } from './icons/uil-wind-sun' export { default as UilWindow } from './icons/uil-window' export { default as UilWindowGrid } from './icons/uil-window-grid' export { default as UilWindowMaximize } from './icons/uil-window-maximize' +export { default as UilWindowRestore } from './icons/uil-window-restore' export { default as UilWindowSection } from './icons/uil-window-section' export { default as UilWindows } from './icons/uil-windows' export { default as UilWindsock } from './icons/uil-windsock' diff --git a/package-lock.json b/package-lock.json index 93c4340..a879ff5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "2.2.2", "license": "IconScout Simple License", "devDependencies": { - "@iconscout/unicons": "^4.0.7", + "@iconscout/unicons": "^4.2.0", "cheerio": "^1.0.0-rc.3", "fs-plus": "^3.1.1", "uppercamelcase": "^3.0.0" diff --git a/package.json b/package.json index e8c6f37..d924fec 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "react-native-svg": "^9.5.3" }, "devDependencies": { - "@iconscout/unicons": "^4.0.7", + "@iconscout/unicons": "^4.2.0", "cheerio": "^1.0.0-rc.3", "fs-plus": "^3.1.1", "uppercamelcase": "^3.0.0"