diff --git a/icons/uil-calender.js b/icons/uil-calendar.js similarity index 84% rename from icons/uil-calender.js rename to icons/uil-calendar.js index f6ac0b8c..6e9c4a15 100644 --- a/icons/uil-calender.js +++ b/icons/uil-calendar.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCalender = ({ color = 'currentColor', size = '24', ...otherProps }) => { +const UilCalendar = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -14,9 +14,9 @@ const UilCalender = ({ color = 'currentColor', size = '24', ...otherProps }) => })); }; -UilCalender.propTypes = { +UilCalendar.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -export default UilCalender; \ No newline at end of file +export default UilCalendar; \ No newline at end of file diff --git a/icons/uil-forecastcloud-moon-tear.js b/icons/uil-cloud-moon-tear.js similarity index 87% rename from icons/uil-forecastcloud-moon-tear.js rename to icons/uil-cloud-moon-tear.js index 30a6e2db..4553ac40 100644 --- a/icons/uil-forecastcloud-moon-tear.js +++ b/icons/uil-cloud-moon-tear.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilForecastcloudMoonTear = ({ color = 'currentColor', size = '24', ...otherProps }) => { +const UilCloudMoonTear = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -14,9 +14,9 @@ const UilForecastcloudMoonTear = ({ color = 'currentColor', size = '24', ...othe })); }; -UilForecastcloudMoonTear.propTypes = { +UilCloudMoonTear.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -export default UilForecastcloudMoonTear; \ No newline at end of file +export default UilCloudMoonTear; \ No newline at end of file diff --git a/icons/uil-corner-up-left-alt.js b/icons/uil-left.js similarity index 79% rename from icons/uil-corner-up-left-alt.js rename to icons/uil-left.js index f8fb4108..ce68dd13 100644 --- a/icons/uil-corner-up-left-alt.js +++ b/icons/uil-left.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCornerUpLeftAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { +const UilLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -14,9 +14,9 @@ const UilCornerUpLeftAlt = ({ color = 'currentColor', size = '24', ...otherProps })); }; -UilCornerUpLeftAlt.propTypes = { +UilLeft.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -export default UilCornerUpLeftAlt; \ No newline at end of file +export default UilLeft; \ No newline at end of file diff --git a/icons/uil-outline.js b/icons/uil-outline.js new file mode 100644 index 00000000..ff980e04 --- /dev/null +++ b/icons/uil-outline.js @@ -0,0 +1,22 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilOutline = ({ color = 'currentColor', size = '24', ...otherProps }) => { + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M19.2,7.3c-1.9-0.4-3.3-2-3.4-3.9V3.1h-3.1v12.5c0,1.5-1.2,2.6-2.6,2.6c-0.8,0-1.6-0.4-2.1-1l0,0l0,0C7,16,7.2,14.3,8.4,13.4C9,13,9.5,13,10.2,13V9.8c-3.2-0.4-5.5,1.8-6,4.9c-0.2,1.8,0.3,3.5,1.6,4.8c2.2,2.3,5.9,2.3,8.2,0.1c1.1-1.1,1.7-2.6,1.7-4.1V9.2c1.3,0.9,2.8,1.4,4.4,1.4V7.4C19.8,7.4,19.5,7.4,19.2,7.3z' + })); +}; + +UilOutline.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +export default UilOutline; \ No newline at end of file diff --git a/icons/uil-bed.js b/icons/uil-sleep.js similarity index 82% rename from icons/uil-bed.js rename to icons/uil-sleep.js index 7276d301..48cade4f 100644 --- a/icons/uil-bed.js +++ b/icons/uil-sleep.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBed = ({ color = 'currentColor', size = '24', ...otherProps }) => { +const UilSleep = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -14,9 +14,9 @@ const UilBed = ({ color = 'currentColor', size = '24', ...otherProps }) => { })); }; -UilBed.propTypes = { +UilSleep.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -export default UilBed; \ No newline at end of file +export default UilSleep; \ No newline at end of file diff --git a/icons/uil-solid.js b/icons/uil-solid.js new file mode 100644 index 00000000..fef047c4 --- /dev/null +++ b/icons/uil-solid.js @@ -0,0 +1,22 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +const UilSolid = ({ color = 'currentColor', size = '24', ...otherProps }) => { + return React.createElement('svg', { + xmlns: 'http://www.w3.org/2000/svg', + width: size, + height: size, + viewBox: '0 0 24 24', + fill: color, + ...otherProps + }, React.createElement('path', { + d: 'M20.4,7.1c-0.1-0.1-0.2-0.1-0.4-0.1h0c-0.3,0-0.5,0-0.8-0.1c-1.7-0.4-2.9-1.7-3-3.4V3.1c0-0.3-0.2-0.5-0.5-0.5h-3.1c-0.3,0-0.5,0.2-0.5,0.5v12.5c0,1.2-1,2.1-2.1,2.1c0,0,0,0,0,0c-0.7,0-1.3-0.3-1.7-0.8c-0.7-0.9-0.5-2.3,0.4-3c0.4-0.3,0.8-0.3,1.6-0.3c0.1,0,0.3,0,0.4-0.1s0.2-0.2,0.2-0.4V9.8c0-0.2-0.2-0.5-0.4-0.5c-1.6-0.2-3.2,0.2-4.4,1.2c-1.1,1-1.9,2.4-2.1,4.1c-0.3,1.9,0.4,3.9,1.7,5.2c1.2,1.3,2.9,1.9,4.5,1.9c1.6,0,3.2-0.6,4.4-1.8c1.2-1.2,1.9-2.8,1.9-4.5v-5.5c1.2,0.6,2.5,1,3.8,1c0.3,0,0.5-0.2,0.5-0.5V7.4C20.6,7.3,20.5,7.2,20.4,7.1z' + })); +}; + +UilSolid.propTypes = { + color: PropTypes.string, + size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), +}; + +export default UilSolid; \ No newline at end of file diff --git a/icons/uil-arrow-growth.js b/icons/uil-statistics.js similarity index 81% rename from icons/uil-arrow-growth.js rename to icons/uil-statistics.js index 72fcd054..2fb9b112 100644 --- a/icons/uil-arrow-growth.js +++ b/icons/uil-statistics.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowGrowth = ({ color = 'currentColor', size = '24', ...otherProps }) => { +const UilStatistics = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -14,9 +14,9 @@ const UilArrowGrowth = ({ color = 'currentColor', size = '24', ...otherProps }) })); }; -UilArrowGrowth.propTypes = { +UilStatistics.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -export default UilArrowGrowth; \ No newline at end of file +export default UilStatistics; \ No newline at end of file diff --git a/icons/uil-baby-carriage.js b/icons/uil-stroller.js similarity index 85% rename from icons/uil-baby-carriage.js rename to icons/uil-stroller.js index 8b166333..070c4be2 100644 --- a/icons/uil-baby-carriage.js +++ b/icons/uil-stroller.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBabyCarriage = ({ color = 'currentColor', size = '24', ...otherProps }) => { +const UilStroller = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -14,9 +14,9 @@ const UilBabyCarriage = ({ color = 'currentColor', size = '24', ...otherProps }) })); }; -UilBabyCarriage.propTypes = { +UilStroller.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -export default UilBabyCarriage; \ No newline at end of file +export default UilStroller; \ No newline at end of file diff --git a/icons/uil-browser.js b/icons/uil-window-restore.js similarity index 81% rename from icons/uil-browser.js rename to icons/uil-window-restore.js index f63561eb..a8621174 100644 --- a/icons/uil-browser.js +++ b/icons/uil-window-restore.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBrowser = ({ color = 'currentColor', size = '24', ...otherProps }) => { +const UilWindowRestore = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -14,9 +14,9 @@ const UilBrowser = ({ color = 'currentColor', size = '24', ...otherProps }) => { })); }; -UilBrowser.propTypes = { +UilWindowRestore.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -export default UilBrowser; \ No newline at end of file +export default UilWindowRestore; \ No newline at end of file diff --git a/index.js b/index.js index 22552d7d..09cc9d1b 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'