Skip to content

Commit 17a890e

Browse files
rankarpanimzedi
andauthored
Release 2.2.4 (#122)
* hotfix: remove exports key that was breaking some imports (#120) * Fix: remove exports key that was breaking some imports * Fix: last version was already there, updating the new * [create-pull-request] automated change (#121) Co-authored-by: rankarpan <[email protected]> --------- Co-authored-by: Zaid Kureshi <[email protected]> Co-authored-by: rankarpan <[email protected]>
1 parent 1637e5c commit 17a890e

File tree

12 files changed

+162
-74
lines changed

12 files changed

+162
-74
lines changed

icons/uil-calender.js renamed to icons/uil-calendar.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33

4-
const UilCalender = (props) => {
4+
const UilCalendar = (props) => {
55
const { color, size, ...otherProps } = props
66
return React.createElement('svg', {
77
xmlns: 'http://www.w3.org/2000/svg',
@@ -15,14 +15,14 @@ const UilCalender = (props) => {
1515
}));
1616
};
1717

18-
UilCalender.propTypes = {
18+
UilCalendar.propTypes = {
1919
color: PropTypes.string,
2020
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
2121
};
2222

23-
UilCalender.defaultProps = {
23+
UilCalendar.defaultProps = {
2424
color: 'currentColor',
2525
size: '24',
2626
};
2727

28-
export default UilCalender;
28+
export default UilCalendar;

icons/uil-forecastcloud-moon-tear.js renamed to icons/uil-cloud-moon-tear.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33

4-
const UilForecastcloudMoonTear = (props) => {
4+
const UilCloudMoonTear = (props) => {
55
const { color, size, ...otherProps } = props
66
return React.createElement('svg', {
77
xmlns: 'http://www.w3.org/2000/svg',
@@ -15,14 +15,14 @@ const UilForecastcloudMoonTear = (props) => {
1515
}));
1616
};
1717

18-
UilForecastcloudMoonTear.propTypes = {
18+
UilCloudMoonTear.propTypes = {
1919
color: PropTypes.string,
2020
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
2121
};
2222

23-
UilForecastcloudMoonTear.defaultProps = {
23+
UilCloudMoonTear.defaultProps = {
2424
color: 'currentColor',
2525
size: '24',
2626
};
2727

28-
export default UilForecastcloudMoonTear;
28+
export default UilCloudMoonTear;

icons/uil-corner-up-left-alt.js renamed to icons/uil-left.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33

4-
const UilCornerUpLeftAlt = (props) => {
4+
const UilLeft = (props) => {
55
const { color, size, ...otherProps } = props
66
return React.createElement('svg', {
77
xmlns: 'http://www.w3.org/2000/svg',
@@ -15,14 +15,14 @@ const UilCornerUpLeftAlt = (props) => {
1515
}));
1616
};
1717

18-
UilCornerUpLeftAlt.propTypes = {
18+
UilLeft.propTypes = {
1919
color: PropTypes.string,
2020
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
2121
};
2222

23-
UilCornerUpLeftAlt.defaultProps = {
23+
UilLeft.defaultProps = {
2424
color: 'currentColor',
2525
size: '24',
2626
};
2727

28-
export default UilCornerUpLeftAlt;
28+
export default UilLeft;

icons/uil-outline.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import React from 'react';
2+
import PropTypes from 'prop-types';
3+
4+
const UilOutline = (props) => {
5+
const { color, size, ...otherProps } = props
6+
return React.createElement('svg', {
7+
xmlns: 'http://www.w3.org/2000/svg',
8+
width: size,
9+
height: size,
10+
viewBox: '0 0 24 24',
11+
fill: color,
12+
...otherProps
13+
}, React.createElement('path', {
14+
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'
15+
}));
16+
};
17+
18+
UilOutline.propTypes = {
19+
color: PropTypes.string,
20+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
21+
};
22+
23+
UilOutline.defaultProps = {
24+
color: 'currentColor',
25+
size: '24',
26+
};
27+
28+
export default UilOutline;

icons/uil-bed.js renamed to icons/uil-sleep.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33

4-
const UilBed = (props) => {
4+
const UilSleep = (props) => {
55
const { color, size, ...otherProps } = props
66
return React.createElement('svg', {
77
xmlns: 'http://www.w3.org/2000/svg',
@@ -15,14 +15,14 @@ const UilBed = (props) => {
1515
}));
1616
};
1717

18-
UilBed.propTypes = {
18+
UilSleep.propTypes = {
1919
color: PropTypes.string,
2020
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
2121
};
2222

23-
UilBed.defaultProps = {
23+
UilSleep.defaultProps = {
2424
color: 'currentColor',
2525
size: '24',
2626
};
2727

28-
export default UilBed;
28+
export default UilSleep;

icons/uil-solid.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import React from 'react';
2+
import PropTypes from 'prop-types';
3+
4+
const UilSolid = (props) => {
5+
const { color, size, ...otherProps } = props
6+
return React.createElement('svg', {
7+
xmlns: 'http://www.w3.org/2000/svg',
8+
width: size,
9+
height: size,
10+
viewBox: '0 0 24 24',
11+
fill: color,
12+
...otherProps
13+
}, React.createElement('path', {
14+
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'
15+
}));
16+
};
17+
18+
UilSolid.propTypes = {
19+
color: PropTypes.string,
20+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
21+
};
22+
23+
UilSolid.defaultProps = {
24+
color: 'currentColor',
25+
size: '24',
26+
};
27+
28+
export default UilSolid;

icons/uil-arrow-growth.js renamed to icons/uil-statistics.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33

4-
const UilArrowGrowth = (props) => {
4+
const UilStatistics = (props) => {
55
const { color, size, ...otherProps } = props
66
return React.createElement('svg', {
77
xmlns: 'http://www.w3.org/2000/svg',
@@ -15,14 +15,14 @@ const UilArrowGrowth = (props) => {
1515
}));
1616
};
1717

18-
UilArrowGrowth.propTypes = {
18+
UilStatistics.propTypes = {
1919
color: PropTypes.string,
2020
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
2121
};
2222

23-
UilArrowGrowth.defaultProps = {
23+
UilStatistics.defaultProps = {
2424
color: 'currentColor',
2525
size: '24',
2626
};
2727

28-
export default UilArrowGrowth;
28+
export default UilStatistics;

icons/uil-baby-carriage.js renamed to icons/uil-stroller.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33

4-
const UilBabyCarriage = (props) => {
4+
const UilStroller = (props) => {
55
const { color, size, ...otherProps } = props
66
return React.createElement('svg', {
77
xmlns: 'http://www.w3.org/2000/svg',
@@ -15,14 +15,14 @@ const UilBabyCarriage = (props) => {
1515
}));
1616
};
1717

18-
UilBabyCarriage.propTypes = {
18+
UilStroller.propTypes = {
1919
color: PropTypes.string,
2020
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
2121
};
2222

23-
UilBabyCarriage.defaultProps = {
23+
UilStroller.defaultProps = {
2424
color: 'currentColor',
2525
size: '24',
2626
};
2727

28-
export default UilBabyCarriage;
28+
export default UilStroller;

icons/uil-browser.js renamed to icons/uil-window-restore.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33

4-
const UilBrowser = (props) => {
4+
const UilWindowRestore = (props) => {
55
const { color, size, ...otherProps } = props
66
return React.createElement('svg', {
77
xmlns: 'http://www.w3.org/2000/svg',
@@ -15,14 +15,14 @@ const UilBrowser = (props) => {
1515
}));
1616
};
1717

18-
UilBrowser.propTypes = {
18+
UilWindowRestore.propTypes = {
1919
color: PropTypes.string,
2020
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
2121
};
2222

23-
UilBrowser.defaultProps = {
23+
UilWindowRestore.defaultProps = {
2424
color: 'currentColor',
2525
size: '24',
2626
};
2727

28-
export default UilBrowser;
28+
export default UilWindowRestore;

index.js

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ export { default as UilArrowDownLeft } from './icons/uil-arrow-down-left'
7171
export { default as UilArrowDownRight } from './icons/uil-arrow-down-right'
7272
export { default as UilArrowFromRight } from './icons/uil-arrow-from-right'
7373
export { default as UilArrowFromTop } from './icons/uil-arrow-from-top'
74-
export { default as UilArrowGrowth } from './icons/uil-arrow-growth'
7574
export { default as UilArrowLeft } from './icons/uil-arrow-left'
7675
export { default as UilArrowRandom } from './icons/uil-arrow-random'
7776
export { default as UilArrowResizeDiagonal } from './icons/uil-arrow-resize-diagonal'
@@ -102,7 +101,6 @@ export { default as UilAtom } from './icons/uil-atom'
102101
export { default as UilAutoFlash } from './icons/uil-auto-flash'
103102
export { default as UilAward } from './icons/uil-award'
104103
export { default as UilAwardAlt } from './icons/uil-award-alt'
105-
export { default as UilBabyCarriage } from './icons/uil-baby-carriage'
106104
export { default as UilBackpack } from './icons/uil-backpack'
107105
export { default as UilBackspace } from './icons/uil-backspace'
108106
export { default as UilBackward } from './icons/uil-backward'
@@ -119,7 +117,6 @@ export { default as UilBasketballHoop } from './icons/uil-basketball-hoop'
119117
export { default as UilBath } from './icons/uil-bath'
120118
export { default as UilBatteryBolt } from './icons/uil-battery-bolt'
121119
export { default as UilBatteryEmpty } from './icons/uil-battery-empty'
122-
export { default as UilBed } from './icons/uil-bed'
123120
export { default as UilBedDouble } from './icons/uil-bed-double'
124121
export { default as UilBehance } from './icons/uil-behance'
125122
export { default as UilBehanceAlt } from './icons/uil-behance-alt'
@@ -174,7 +171,6 @@ export { default as UilBrightnessMinus } from './icons/uil-brightness-minus'
174171
export { default as UilBrightnessPlus } from './icons/uil-brightness-plus'
175172
export { default as UilBringBottom } from './icons/uil-bring-bottom'
176173
export { default as UilBringFront } from './icons/uil-bring-front'
177-
export { default as UilBrowser } from './icons/uil-browser'
178174
export { default as UilBrushAlt } from './icons/uil-brush-alt'
179175
export { default as UilBug } from './icons/uil-bug'
180176
export { default as UilBuilding } from './icons/uil-building'
@@ -184,9 +180,9 @@ export { default as UilBusAlt } from './icons/uil-bus-alt'
184180
export { default as UilBusSchool } from './icons/uil-bus-school'
185181
export { default as UilCalculator } from './icons/uil-calculator'
186182
export { default as UilCalculatorAlt } from './icons/uil-calculator-alt'
183+
export { default as UilCalendar } from './icons/uil-calendar'
187184
export { default as UilCalendarAlt } from './icons/uil-calendar-alt'
188185
export { default as UilCalendarSlash } from './icons/uil-calendar-slash'
189-
export { default as UilCalender } from './icons/uil-calender'
190186
export { default as UilCalling } from './icons/uil-calling'
191187
export { default as UilCamera } from './icons/uil-camera'
192188
export { default as UilCameraChange } from './icons/uil-camera-change'
@@ -259,6 +255,7 @@ export { default as UilCloudMoonHail } from './icons/uil-cloud-moon-hail'
259255
export { default as UilCloudMoonMeatball } from './icons/uil-cloud-moon-meatball'
260256
export { default as UilCloudMoonRain } from './icons/uil-cloud-moon-rain'
261257
export { default as UilCloudMoonShowers } from './icons/uil-cloud-moon-showers'
258+
export { default as UilCloudMoonTear } from './icons/uil-cloud-moon-tear'
262259
export { default as UilCloudQuestion } from './icons/uil-cloud-question'
263260
export { default as UilCloudRain } from './icons/uil-cloud-rain'
264261
export { default as UilCloudRainSun } from './icons/uil-cloud-rain-sun'
@@ -363,7 +360,6 @@ export { default as UilCornerDownRightAlt } from './icons/uil-corner-down-right-
363360
export { default as UilCornerLeftDown } from './icons/uil-corner-left-down'
364361
export { default as UilCornerRightDown } from './icons/uil-corner-right-down'
365362
export { default as UilCornerUpLeft } from './icons/uil-corner-up-left'
366-
export { default as UilCornerUpLeftAlt } from './icons/uil-corner-up-left-alt'
367363
export { default as UilCornerUpRight } from './icons/uil-corner-up-right'
368364
export { default as UilCornerUpRightAlt } from './icons/uil-corner-up-right-alt'
369365
export { default as UilCoronavirus } from './icons/uil-coronavirus'
@@ -567,7 +563,6 @@ export { default as UilFont } from './icons/uil-font'
567563
export { default as UilFootball } from './icons/uil-football'
568564
export { default as UilFootballAmerican } from './icons/uil-football-american'
569565
export { default as UilFootballBall } from './icons/uil-football-ball'
570-
export { default as UilForecastcloudMoonTear } from './icons/uil-forecastcloud-moon-tear'
571566
export { default as UilForwadedCall } from './icons/uil-forwaded-call'
572567
export { default as UilForward } from './icons/uil-forward'
573568
export { default as UilFrown } from './icons/uil-frown'
@@ -695,6 +690,7 @@ export { default as UilLayerGroupSlash } from './icons/uil-layer-group-slash'
695690
export { default as UilLayers } from './icons/uil-layers'
696691
export { default as UilLayersAlt } from './icons/uil-layers-alt'
697692
export { default as UilLayersSlash } from './icons/uil-layers-slash'
693+
export { default as UilLeft } from './icons/uil-left'
698694
export { default as UilLeftArrowFromLeft } from './icons/uil-left-arrow-from-left'
699695
export { default as UilLeftArrowToLeft } from './icons/uil-left-arrow-to-left'
700696
export { default as UilLeftIndent } from './icons/uil-left-indent'
@@ -817,6 +813,7 @@ export { default as UilOkta } from './icons/uil-okta'
817813
export { default as UilOpera } from './icons/uil-opera'
818814
export { default as UilOperaAlt } from './icons/uil-opera-alt'
819815
export { default as UilOutgoingCall } from './icons/uil-outgoing-call'
816+
export { default as UilOutline } from './icons/uil-outline'
820817
export { default as UilPackage } from './icons/uil-package'
821818
export { default as UilPadlock } from './icons/uil-padlock'
822819
export { default as UilPagelines } from './icons/uil-pagelines'
@@ -982,6 +979,7 @@ export { default as UilSkype } from './icons/uil-skype'
982979
export { default as UilSkypeAlt } from './icons/uil-skype-alt'
983980
export { default as UilSlack } from './icons/uil-slack'
984981
export { default as UilSlackAlt } from './icons/uil-slack-alt'
982+
export { default as UilSleep } from './icons/uil-sleep'
985983
export { default as UilSliderH } from './icons/uil-slider-h'
986984
export { default as UilSliderHRange } from './icons/uil-slider-h-range'
987985
export { default as UilSlidersV } from './icons/uil-sliders-v'
@@ -1000,6 +998,7 @@ export { default as UilSnowFlake } from './icons/uil-snow-flake'
1000998
export { default as UilSnowflake } from './icons/uil-snowflake'
1001999
export { default as UilSnowflakeAlt } from './icons/uil-snowflake-alt'
10021000
export { default as UilSocialDistancing } from './icons/uil-social-distancing'
1001+
export { default as UilSolid } from './icons/uil-solid'
10031002
export { default as UilSort } from './icons/uil-sort'
10041003
export { default as UilSortAmountDown } from './icons/uil-sort-amount-down'
10051004
export { default as UilSortAmountUp } from './icons/uil-sort-amount-up'
@@ -1016,6 +1015,7 @@ export { default as UilSquareShape } from './icons/uil-square-shape'
10161015
export { default as UilSquint } from './icons/uil-squint'
10171016
export { default as UilStar } from './icons/uil-star'
10181017
export { default as UilStarHalfAlt } from './icons/uil-star-half-alt'
1018+
export { default as UilStatistics } from './icons/uil-statistics'
10191019
export { default as UilStepBackward } from './icons/uil-step-backward'
10201020
export { default as UilStepBackwardAlt } from './icons/uil-step-backward-alt'
10211021
export { default as UilStepBackwardCircle } from './icons/uil-step-backward-circle'
@@ -1030,6 +1030,7 @@ export { default as UilStoreAlt } from './icons/uil-store-alt'
10301030
export { default as UilStoreSlash } from './icons/uil-store-slash'
10311031
export { default as UilStreering } from './icons/uil-streering'
10321032
export { default as UilStretcher } from './icons/uil-stretcher'
1033+
export { default as UilStroller } from './icons/uil-stroller'
10331034
export { default as UilSubject } from './icons/uil-subject'
10341035
export { default as UilSubway } from './icons/uil-subway'
10351036
export { default as UilSubwayAlt } from './icons/uil-subway-alt'
@@ -1188,6 +1189,7 @@ export { default as UilWindSun } from './icons/uil-wind-sun'
11881189
export { default as UilWindow } from './icons/uil-window'
11891190
export { default as UilWindowGrid } from './icons/uil-window-grid'
11901191
export { default as UilWindowMaximize } from './icons/uil-window-maximize'
1192+
export { default as UilWindowRestore } from './icons/uil-window-restore'
11911193
export { default as UilWindowSection } from './icons/uil-window-section'
11921194
export { default as UilWindows } from './icons/uil-windows'
11931195
export { default as UilWindsock } from './icons/uil-windsock'

0 commit comments

Comments
 (0)