diff --git a/src/icons/activity.js b/src/icons/activity.js index e07ff92f..5f8cf800 100644 --- a/src/icons/activity.js +++ b/src/icons/activity.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Activity = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Activity.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Activity.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/airplay.js b/src/icons/airplay.js index 2905ba9b..cb3a518c 100644 --- a/src/icons/airplay.js +++ b/src/icons/airplay.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Airplay = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Airplay = props => { }; Airplay.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Airplay.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/alert-circle.js b/src/icons/alert-circle.js index e2f8c8fe..f699e435 100644 --- a/src/icons/alert-circle.js +++ b/src/icons/alert-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const AlertCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const AlertCircle = props => { }; AlertCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; AlertCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/alert-octagon.js b/src/icons/alert-octagon.js index a3511ede..6a42b20a 100644 --- a/src/icons/alert-octagon.js +++ b/src/icons/alert-octagon.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const AlertOctagon = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const AlertOctagon = props => { }; AlertOctagon.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; AlertOctagon.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/alert-triangle.js b/src/icons/alert-triangle.js index 1b210368..0c74c053 100644 --- a/src/icons/alert-triangle.js +++ b/src/icons/alert-triangle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const AlertTriangle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const AlertTriangle = props => { }; AlertTriangle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; AlertTriangle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/align-center.js b/src/icons/align-center.js index 6f07f484..06e47dd6 100644 --- a/src/icons/align-center.js +++ b/src/icons/align-center.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const AlignCenter = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const AlignCenter = props => { }; AlignCenter.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; AlignCenter.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/align-justify.js b/src/icons/align-justify.js index f4bd4201..4f05be79 100644 --- a/src/icons/align-justify.js +++ b/src/icons/align-justify.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const AlignJustify = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const AlignJustify = props => { }; AlignJustify.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; AlignJustify.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/align-left.js b/src/icons/align-left.js index bcf632cc..456a0ceb 100644 --- a/src/icons/align-left.js +++ b/src/icons/align-left.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const AlignLeft = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const AlignLeft = props => { }; AlignLeft.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; AlignLeft.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/align-right.js b/src/icons/align-right.js index e185fc97..8fdd6d04 100644 --- a/src/icons/align-right.js +++ b/src/icons/align-right.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const AlignRight = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const AlignRight = props => { }; AlignRight.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; AlignRight.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/anchor.js b/src/icons/anchor.js index ac19bbc8..bf8d599b 100644 --- a/src/icons/anchor.js +++ b/src/icons/anchor.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Anchor = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Anchor = props => { }; Anchor.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Anchor.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/aperture.js b/src/icons/aperture.js index bd16e5de..97f735ca 100644 --- a/src/icons/aperture.js +++ b/src/icons/aperture.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Aperture = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -28,11 +29,13 @@ const Aperture = props => { }; Aperture.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Aperture.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/arrow-down-circle.js b/src/icons/arrow-down-circle.js index 47931cda..83324fc5 100644 --- a/src/icons/arrow-down-circle.js +++ b/src/icons/arrow-down-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ArrowDownCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const ArrowDownCircle = props => { }; ArrowDownCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ArrowDownCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/arrow-down-left.js b/src/icons/arrow-down-left.js index 193d48d8..2ebb7a78 100644 --- a/src/icons/arrow-down-left.js +++ b/src/icons/arrow-down-left.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ArrowDownLeft = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ArrowDownLeft = props => { }; ArrowDownLeft.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ArrowDownLeft.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/arrow-down-right.js b/src/icons/arrow-down-right.js index eff99d97..15486b4b 100644 --- a/src/icons/arrow-down-right.js +++ b/src/icons/arrow-down-right.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ArrowDownRight = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ArrowDownRight = props => { }; ArrowDownRight.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ArrowDownRight.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/arrow-down.js b/src/icons/arrow-down.js index 3890a864..d2856ede 100644 --- a/src/icons/arrow-down.js +++ b/src/icons/arrow-down.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ArrowDown = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ArrowDown = props => { }; ArrowDown.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ArrowDown.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/arrow-left-circle.js b/src/icons/arrow-left-circle.js index 7cbbb635..e13e928f 100644 --- a/src/icons/arrow-left-circle.js +++ b/src/icons/arrow-left-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ArrowLeftCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const ArrowLeftCircle = props => { }; ArrowLeftCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ArrowLeftCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/arrow-left.js b/src/icons/arrow-left.js index 24476492..1e21978e 100644 --- a/src/icons/arrow-left.js +++ b/src/icons/arrow-left.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ArrowLeft = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ArrowLeft = props => { }; ArrowLeft.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ArrowLeft.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/arrow-right-circle.js b/src/icons/arrow-right-circle.js index 96fc4689..542b4185 100644 --- a/src/icons/arrow-right-circle.js +++ b/src/icons/arrow-right-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ArrowRightCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const ArrowRightCircle = props => { }; ArrowRightCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ArrowRightCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/arrow-right.js b/src/icons/arrow-right.js index ed3abd5f..8a55dc27 100644 --- a/src/icons/arrow-right.js +++ b/src/icons/arrow-right.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ArrowRight = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ArrowRight = props => { }; ArrowRight.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ArrowRight.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/arrow-up-circle.js b/src/icons/arrow-up-circle.js index 6b89af47..ca2ec494 100644 --- a/src/icons/arrow-up-circle.js +++ b/src/icons/arrow-up-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ArrowUpCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const ArrowUpCircle = props => { }; ArrowUpCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ArrowUpCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/arrow-up-left.js b/src/icons/arrow-up-left.js index 4a3dd978..1c104449 100644 --- a/src/icons/arrow-up-left.js +++ b/src/icons/arrow-up-left.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ArrowUpLeft = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ArrowUpLeft = props => { }; ArrowUpLeft.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ArrowUpLeft.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/arrow-up-right.js b/src/icons/arrow-up-right.js index c2611319..46f5783d 100644 --- a/src/icons/arrow-up-right.js +++ b/src/icons/arrow-up-right.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ArrowUpRight = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ArrowUpRight = props => { }; ArrowUpRight.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ArrowUpRight.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/arrow-up.js b/src/icons/arrow-up.js index 9a61274b..f59fd573 100644 --- a/src/icons/arrow-up.js +++ b/src/icons/arrow-up.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ArrowUp = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ArrowUp = props => { }; ArrowUp.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ArrowUp.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/at-sign.js b/src/icons/at-sign.js index e500476f..9f9d7fd0 100644 --- a/src/icons/at-sign.js +++ b/src/icons/at-sign.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const AtSign = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const AtSign = props => { }; AtSign.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; AtSign.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/award.js b/src/icons/award.js index 6a98b3df..f2f41f62 100644 --- a/src/icons/award.js +++ b/src/icons/award.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Award = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Award = props => { }; Award.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Award.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/bar-chart-2.js b/src/icons/bar-chart-2.js index 81b360ac..0ecb90cd 100644 --- a/src/icons/bar-chart-2.js +++ b/src/icons/bar-chart-2.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const BarChart2 = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const BarChart2 = props => { }; BarChart2.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; BarChart2.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/bar-chart.js b/src/icons/bar-chart.js index a81bdf0f..7226e11a 100644 --- a/src/icons/bar-chart.js +++ b/src/icons/bar-chart.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const BarChart = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const BarChart = props => { }; BarChart.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; BarChart.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/battery-charging.js b/src/icons/battery-charging.js index b27f67f2..25bb0f79 100644 --- a/src/icons/battery-charging.js +++ b/src/icons/battery-charging.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const BatteryCharging = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const BatteryCharging = props => { }; BatteryCharging.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; BatteryCharging.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/battery.js b/src/icons/battery.js index 3e3ff664..9d721621 100644 --- a/src/icons/battery.js +++ b/src/icons/battery.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Battery = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Battery = props => { }; Battery.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Battery.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/bell-off.js b/src/icons/bell-off.js index 66543416..32583381 100644 --- a/src/icons/bell-off.js +++ b/src/icons/bell-off.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const BellOff = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const BellOff = props => { }; BellOff.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; BellOff.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/bell.js b/src/icons/bell.js index df613c45..353216a3 100644 --- a/src/icons/bell.js +++ b/src/icons/bell.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Bell = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Bell.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Bell.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/bluetooth.js b/src/icons/bluetooth.js index 323e96d4..d4124f69 100644 --- a/src/icons/bluetooth.js +++ b/src/icons/bluetooth.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Bluetooth = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Bluetooth.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Bluetooth.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/bold.js b/src/icons/bold.js index ca9264b2..9d5b9907 100644 --- a/src/icons/bold.js +++ b/src/icons/bold.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Bold = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Bold = props => { }; Bold.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Bold.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/book-open.js b/src/icons/book-open.js index effb40c6..0504d64f 100644 --- a/src/icons/book-open.js +++ b/src/icons/book-open.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const BookOpen = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const BookOpen = props => { }; BookOpen.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; BookOpen.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/book.js b/src/icons/book.js index 04d3dd3a..926eddfb 100644 --- a/src/icons/book.js +++ b/src/icons/book.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Book = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Book = props => { }; Book.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Book.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/bookmark.js b/src/icons/bookmark.js index 2792ddb4..35a1b9db 100644 --- a/src/icons/bookmark.js +++ b/src/icons/bookmark.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Bookmark = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Bookmark.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Bookmark.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/box.js b/src/icons/box.js index b2e0ca1f..df4b3579 100644 --- a/src/icons/box.js +++ b/src/icons/box.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Box = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Box = props => { }; Box.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Box.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/briefcase.js b/src/icons/briefcase.js index 7eff9d79..79679be0 100644 --- a/src/icons/briefcase.js +++ b/src/icons/briefcase.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Briefcase = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Briefcase = props => { }; Briefcase.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Briefcase.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/calendar.js b/src/icons/calendar.js index 327791bf..423faf34 100644 --- a/src/icons/calendar.js +++ b/src/icons/calendar.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Calendar = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const Calendar = props => { }; Calendar.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Calendar.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/camera-off.js b/src/icons/camera-off.js index 6ddc830d..5b46da55 100644 --- a/src/icons/camera-off.js +++ b/src/icons/camera-off.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CameraOff = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CameraOff = props => { }; CameraOff.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CameraOff.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/camera.js b/src/icons/camera.js index 991e8d50..a686a531 100644 --- a/src/icons/camera.js +++ b/src/icons/camera.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Camera = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Camera = props => { }; Camera.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Camera.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/cast.js b/src/icons/cast.js index 99ceea18..4c28b664 100644 --- a/src/icons/cast.js +++ b/src/icons/cast.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Cast = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Cast = props => { }; Cast.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Cast.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/check-circle.js b/src/icons/check-circle.js index f0682d43..b6fb90da 100644 --- a/src/icons/check-circle.js +++ b/src/icons/check-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CheckCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CheckCircle = props => { }; CheckCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CheckCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/check-square.js b/src/icons/check-square.js index b13fa3b9..60e2738e 100644 --- a/src/icons/check-square.js +++ b/src/icons/check-square.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CheckSquare = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CheckSquare = props => { }; CheckSquare.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CheckSquare.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/check.js b/src/icons/check.js index ce37d1ad..63239f26 100644 --- a/src/icons/check.js +++ b/src/icons/check.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Check = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Check.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Check.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/chevron-down.js b/src/icons/chevron-down.js index db2c56f7..12a3814b 100644 --- a/src/icons/chevron-down.js +++ b/src/icons/chevron-down.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ChevronDown = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; ChevronDown.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ChevronDown.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/chevron-left.js b/src/icons/chevron-left.js index 8011ed02..f053e84c 100644 --- a/src/icons/chevron-left.js +++ b/src/icons/chevron-left.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ChevronLeft = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; ChevronLeft.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ChevronLeft.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/chevron-right.js b/src/icons/chevron-right.js index 01d2bbf1..85e0506d 100644 --- a/src/icons/chevron-right.js +++ b/src/icons/chevron-right.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ChevronRight = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; ChevronRight.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ChevronRight.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/chevron-up.js b/src/icons/chevron-up.js index 3864322f..b02a8988 100644 --- a/src/icons/chevron-up.js +++ b/src/icons/chevron-up.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ChevronUp = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; ChevronUp.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ChevronUp.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/chevrons-down.js b/src/icons/chevrons-down.js index c603e45f..08e546a4 100644 --- a/src/icons/chevrons-down.js +++ b/src/icons/chevrons-down.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ChevronsDown = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ChevronsDown = props => { }; ChevronsDown.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ChevronsDown.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/chevrons-left.js b/src/icons/chevrons-left.js index 37a256e5..0a3c56f2 100644 --- a/src/icons/chevrons-left.js +++ b/src/icons/chevrons-left.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ChevronsLeft = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ChevronsLeft = props => { }; ChevronsLeft.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ChevronsLeft.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/chevrons-right.js b/src/icons/chevrons-right.js index 79cb5848..ba473a6a 100644 --- a/src/icons/chevrons-right.js +++ b/src/icons/chevrons-right.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ChevronsRight = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ChevronsRight = props => { }; ChevronsRight.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ChevronsRight.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/chevrons-up.js b/src/icons/chevrons-up.js index 4a1c4cc6..dc6a50ba 100644 --- a/src/icons/chevrons-up.js +++ b/src/icons/chevrons-up.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ChevronsUp = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ChevronsUp = props => { }; ChevronsUp.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ChevronsUp.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/chrome.js b/src/icons/chrome.js index 4b2f093f..abe71e66 100644 --- a/src/icons/chrome.js +++ b/src/icons/chrome.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Chrome = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -26,11 +27,13 @@ const Chrome = props => { }; Chrome.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Chrome.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/circle.js b/src/icons/circle.js index d9853815..d112e321 100644 --- a/src/icons/circle.js +++ b/src/icons/circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Circle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Circle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Circle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/clipboard.js b/src/icons/clipboard.js index 23493877..a708362f 100644 --- a/src/icons/clipboard.js +++ b/src/icons/clipboard.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Clipboard = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Clipboard = props => { }; Clipboard.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Clipboard.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/clock.js b/src/icons/clock.js index 6210d210..c1fa6dd5 100644 --- a/src/icons/clock.js +++ b/src/icons/clock.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Clock = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Clock = props => { }; Clock.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Clock.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/cloud-drizzle.js b/src/icons/cloud-drizzle.js index abe258ab..976ce059 100644 --- a/src/icons/cloud-drizzle.js +++ b/src/icons/cloud-drizzle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CloudDrizzle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -28,11 +29,13 @@ const CloudDrizzle = props => { }; CloudDrizzle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CloudDrizzle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/cloud-lightning.js b/src/icons/cloud-lightning.js index e0a5cfa4..68a3f579 100644 --- a/src/icons/cloud-lightning.js +++ b/src/icons/cloud-lightning.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CloudLightning = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CloudLightning = props => { }; CloudLightning.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CloudLightning.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/cloud-off.js b/src/icons/cloud-off.js index 1263fdfe..5d5cebf5 100644 --- a/src/icons/cloud-off.js +++ b/src/icons/cloud-off.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CloudOff = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CloudOff = props => { }; CloudOff.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CloudOff.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/cloud-rain.js b/src/icons/cloud-rain.js index 6a2ce2e0..614c0400 100644 --- a/src/icons/cloud-rain.js +++ b/src/icons/cloud-rain.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CloudRain = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const CloudRain = props => { }; CloudRain.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CloudRain.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/cloud-snow.js b/src/icons/cloud-snow.js index 5347beca..8317888e 100644 --- a/src/icons/cloud-snow.js +++ b/src/icons/cloud-snow.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CloudSnow = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -28,11 +29,13 @@ const CloudSnow = props => { }; CloudSnow.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CloudSnow.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/cloud.js b/src/icons/cloud.js index d1be5e22..6dbd3dbe 100644 --- a/src/icons/cloud.js +++ b/src/icons/cloud.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Cloud = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Cloud.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Cloud.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/code.js b/src/icons/code.js index 6540353e..b2506186 100644 --- a/src/icons/code.js +++ b/src/icons/code.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Code = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Code = props => { }; Code.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Code.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/codepen.js b/src/icons/codepen.js index 22df00b5..52d3da97 100644 --- a/src/icons/codepen.js +++ b/src/icons/codepen.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Codepen = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -26,11 +27,13 @@ const Codepen = props => { }; Codepen.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Codepen.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/command.js b/src/icons/command.js index 4201f367..d7af2921 100644 --- a/src/icons/command.js +++ b/src/icons/command.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Command = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Command.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Command.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/compass.js b/src/icons/compass.js index cfa7e753..f02361ed 100644 --- a/src/icons/compass.js +++ b/src/icons/compass.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Compass = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Compass = props => { }; Compass.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Compass.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/copy.js b/src/icons/copy.js index bacc01e7..5abd0890 100644 --- a/src/icons/copy.js +++ b/src/icons/copy.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Copy = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Copy = props => { }; Copy.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Copy.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/corner-down-left.js b/src/icons/corner-down-left.js index 7553ed98..dc0fc9be 100644 --- a/src/icons/corner-down-left.js +++ b/src/icons/corner-down-left.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CornerDownLeft = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CornerDownLeft = props => { }; CornerDownLeft.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CornerDownLeft.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/corner-down-right.js b/src/icons/corner-down-right.js index 61ee45df..f1691357 100644 --- a/src/icons/corner-down-right.js +++ b/src/icons/corner-down-right.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CornerDownRight = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CornerDownRight = props => { }; CornerDownRight.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CornerDownRight.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/corner-left-down.js b/src/icons/corner-left-down.js index 21abef41..ebc5ad74 100644 --- a/src/icons/corner-left-down.js +++ b/src/icons/corner-left-down.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CornerLeftDown = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CornerLeftDown = props => { }; CornerLeftDown.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CornerLeftDown.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/corner-left-up.js b/src/icons/corner-left-up.js index f568e2b5..6c77819c 100644 --- a/src/icons/corner-left-up.js +++ b/src/icons/corner-left-up.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CornerLeftUp = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CornerLeftUp = props => { }; CornerLeftUp.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CornerLeftUp.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/corner-right-down.js b/src/icons/corner-right-down.js index b0cde52e..c2304348 100644 --- a/src/icons/corner-right-down.js +++ b/src/icons/corner-right-down.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CornerRightDown = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CornerRightDown = props => { }; CornerRightDown.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CornerRightDown.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/corner-right-up.js b/src/icons/corner-right-up.js index 5e6a59ef..98a75073 100644 --- a/src/icons/corner-right-up.js +++ b/src/icons/corner-right-up.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CornerRightUp = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CornerRightUp = props => { }; CornerRightUp.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CornerRightUp.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/corner-up-left.js b/src/icons/corner-up-left.js index 729fbdc1..8b0fb2c2 100644 --- a/src/icons/corner-up-left.js +++ b/src/icons/corner-up-left.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CornerUpLeft = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CornerUpLeft = props => { }; CornerUpLeft.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CornerUpLeft.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/corner-up-right.js b/src/icons/corner-up-right.js index 1b42e7f2..ab358e31 100644 --- a/src/icons/corner-up-right.js +++ b/src/icons/corner-up-right.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CornerUpRight = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CornerUpRight = props => { }; CornerUpRight.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CornerUpRight.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/cpu.js b/src/icons/cpu.js index b14e6ba6..1b63d5ae 100644 --- a/src/icons/cpu.js +++ b/src/icons/cpu.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Cpu = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -31,11 +32,13 @@ const Cpu = props => { }; Cpu.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Cpu.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/credit-card.js b/src/icons/credit-card.js index 6cf8228c..a9fc1104 100644 --- a/src/icons/credit-card.js +++ b/src/icons/credit-card.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const CreditCard = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const CreditCard = props => { }; CreditCard.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CreditCard.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/crop.js b/src/icons/crop.js index f2bd2e2a..7d7b49df 100644 --- a/src/icons/crop.js +++ b/src/icons/crop.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Crop = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Crop = props => { }; Crop.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Crop.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/crosshair.js b/src/icons/crosshair.js index a8d488c5..ae0b2740 100644 --- a/src/icons/crosshair.js +++ b/src/icons/crosshair.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Crosshair = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -26,11 +27,13 @@ const Crosshair = props => { }; Crosshair.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Crosshair.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/database.js b/src/icons/database.js index 851d9a6c..2f25f7d8 100644 --- a/src/icons/database.js +++ b/src/icons/database.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Database = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Database = props => { }; Database.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Database.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/delete.js b/src/icons/delete.js index 57030194..57631da1 100644 --- a/src/icons/delete.js +++ b/src/icons/delete.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Delete = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Delete = props => { }; Delete.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Delete.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/disc.js b/src/icons/disc.js index 9785281f..3208385b 100644 --- a/src/icons/disc.js +++ b/src/icons/disc.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Disc = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Disc = props => { }; Disc.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Disc.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/dollar-sign.js b/src/icons/dollar-sign.js index dffa52dd..b222e0cc 100644 --- a/src/icons/dollar-sign.js +++ b/src/icons/dollar-sign.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const DollarSign = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const DollarSign = props => { }; DollarSign.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; DollarSign.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/download-cloud.js b/src/icons/download-cloud.js index cc3b897b..10b4b413 100644 --- a/src/icons/download-cloud.js +++ b/src/icons/download-cloud.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const DownloadCloud = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const DownloadCloud = props => { }; DownloadCloud.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; DownloadCloud.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/download.js b/src/icons/download.js index 8013f85e..c9083628 100644 --- a/src/icons/download.js +++ b/src/icons/download.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Download = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Download = props => { }; Download.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Download.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/droplet.js b/src/icons/droplet.js index 74391127..4656efa4 100644 --- a/src/icons/droplet.js +++ b/src/icons/droplet.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Droplet = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Droplet.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Droplet.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/edit-2.js b/src/icons/edit-2.js index ecb827c7..6fad6083 100644 --- a/src/icons/edit-2.js +++ b/src/icons/edit-2.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Edit2 = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Edit2.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Edit2.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/edit-3.js b/src/icons/edit-3.js index 0cdc2280..12a3ee28 100644 --- a/src/icons/edit-3.js +++ b/src/icons/edit-3.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Edit3 = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Edit3 = props => { }; Edit3.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Edit3.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/edit.js b/src/icons/edit.js index ec586e20..5d12cb95 100644 --- a/src/icons/edit.js +++ b/src/icons/edit.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Edit = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Edit = props => { }; Edit.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Edit.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/external-link.js b/src/icons/external-link.js index af2d1f18..acbc9d95 100644 --- a/src/icons/external-link.js +++ b/src/icons/external-link.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ExternalLink = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const ExternalLink = props => { }; ExternalLink.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ExternalLink.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/eye-off.js b/src/icons/eye-off.js index 0a742ae4..fecf2a58 100644 --- a/src/icons/eye-off.js +++ b/src/icons/eye-off.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const EyeOff = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const EyeOff = props => { }; EyeOff.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; EyeOff.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/eye.js b/src/icons/eye.js index 7ee84693..c6d43699 100644 --- a/src/icons/eye.js +++ b/src/icons/eye.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Eye = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Eye = props => { }; Eye.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Eye.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/facebook.js b/src/icons/facebook.js index 09bf1567..53f85f36 100644 --- a/src/icons/facebook.js +++ b/src/icons/facebook.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Facebook = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Facebook.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Facebook.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/fast-forward.js b/src/icons/fast-forward.js index 643a557f..c6cbde67 100644 --- a/src/icons/fast-forward.js +++ b/src/icons/fast-forward.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const FastForward = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const FastForward = props => { }; FastForward.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; FastForward.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/feather.js b/src/icons/feather.js index 516ebbdf..a525e6d1 100644 --- a/src/icons/feather.js +++ b/src/icons/feather.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Feather = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Feather = props => { }; Feather.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Feather.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/file-minus.js b/src/icons/file-minus.js index c83e30cf..4bcdedd5 100644 --- a/src/icons/file-minus.js +++ b/src/icons/file-minus.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const FileMinus = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const FileMinus = props => { }; FileMinus.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; FileMinus.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/file-plus.js b/src/icons/file-plus.js index eb880148..31144a36 100644 --- a/src/icons/file-plus.js +++ b/src/icons/file-plus.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const FilePlus = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const FilePlus = props => { }; FilePlus.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; FilePlus.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/file-text.js b/src/icons/file-text.js index 94e77247..602211a0 100644 --- a/src/icons/file-text.js +++ b/src/icons/file-text.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const FileText = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -26,11 +27,13 @@ const FileText = props => { }; FileText.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; FileText.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/file.js b/src/icons/file.js index 2836d67e..cb7c98dc 100644 --- a/src/icons/file.js +++ b/src/icons/file.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const File = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const File = props => { }; File.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; File.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/film.js b/src/icons/film.js index 14b5a501..0fd1a885 100644 --- a/src/icons/film.js +++ b/src/icons/film.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Film = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -29,11 +30,13 @@ const Film = props => { }; Film.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Film.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/filter.js b/src/icons/filter.js index f2287d2a..ce110d1e 100644 --- a/src/icons/filter.js +++ b/src/icons/filter.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Filter = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Filter.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Filter.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/flag.js b/src/icons/flag.js index 0ff4325c..e8001975 100644 --- a/src/icons/flag.js +++ b/src/icons/flag.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Flag = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Flag = props => { }; Flag.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Flag.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/folder-minus.js b/src/icons/folder-minus.js index 32c1cd6e..e3f3109d 100644 --- a/src/icons/folder-minus.js +++ b/src/icons/folder-minus.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const FolderMinus = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const FolderMinus = props => { }; FolderMinus.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; FolderMinus.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/folder-plus.js b/src/icons/folder-plus.js index be9863bd..779357ca 100644 --- a/src/icons/folder-plus.js +++ b/src/icons/folder-plus.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const FolderPlus = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const FolderPlus = props => { }; FolderPlus.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; FolderPlus.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/folder.js b/src/icons/folder.js index ae024187..6c83048f 100644 --- a/src/icons/folder.js +++ b/src/icons/folder.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Folder = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Folder.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Folder.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/git-branch.js b/src/icons/git-branch.js index bc3b7770..55c8c1d9 100644 --- a/src/icons/git-branch.js +++ b/src/icons/git-branch.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const GitBranch = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const GitBranch = props => { }; GitBranch.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; GitBranch.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/git-commit.js b/src/icons/git-commit.js index ff5af96a..6ace3aff 100644 --- a/src/icons/git-commit.js +++ b/src/icons/git-commit.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const GitCommit = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const GitCommit = props => { }; GitCommit.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; GitCommit.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/git-merge.js b/src/icons/git-merge.js index 446e5b10..e2881b3c 100644 --- a/src/icons/git-merge.js +++ b/src/icons/git-merge.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const GitMerge = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const GitMerge = props => { }; GitMerge.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; GitMerge.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/git-pull-request.js b/src/icons/git-pull-request.js index dce008c0..04f6c0c3 100644 --- a/src/icons/git-pull-request.js +++ b/src/icons/git-pull-request.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const GitPullRequest = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const GitPullRequest = props => { }; GitPullRequest.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; GitPullRequest.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/github.js b/src/icons/github.js index 8578d3ef..073f0a97 100644 --- a/src/icons/github.js +++ b/src/icons/github.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Github = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Github.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Github.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/gitlab.js b/src/icons/gitlab.js index 26b338b8..d1172e4f 100644 --- a/src/icons/gitlab.js +++ b/src/icons/gitlab.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Gitlab = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Gitlab.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Gitlab.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/globe.js b/src/icons/globe.js index d75aad8a..0512e49d 100644 --- a/src/icons/globe.js +++ b/src/icons/globe.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Globe = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Globe = props => { }; Globe.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Globe.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/grid.js b/src/icons/grid.js index 68f1e774..43479885 100644 --- a/src/icons/grid.js +++ b/src/icons/grid.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Grid = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const Grid = props => { }; Grid.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Grid.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/hard-drive.js b/src/icons/hard-drive.js index 7b8d4dbf..82771c57 100644 --- a/src/icons/hard-drive.js +++ b/src/icons/hard-drive.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const HardDrive = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const HardDrive = props => { }; HardDrive.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; HardDrive.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/hash.js b/src/icons/hash.js index 9837d4e1..2ce51eb2 100644 --- a/src/icons/hash.js +++ b/src/icons/hash.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Hash = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const Hash = props => { }; Hash.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Hash.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/headphones.js b/src/icons/headphones.js index e38f903d..051a2870 100644 --- a/src/icons/headphones.js +++ b/src/icons/headphones.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Headphones = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Headphones = props => { }; Headphones.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Headphones.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/heart.js b/src/icons/heart.js index ae0519f6..aae339d3 100644 --- a/src/icons/heart.js +++ b/src/icons/heart.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Heart = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Heart.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Heart.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/help-circle.js b/src/icons/help-circle.js index 424ca11b..8d8863a6 100644 --- a/src/icons/help-circle.js +++ b/src/icons/help-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const HelpCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const HelpCircle = props => { }; HelpCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; HelpCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/home.js b/src/icons/home.js index a27461f4..46ceadd8 100644 --- a/src/icons/home.js +++ b/src/icons/home.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Home = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Home = props => { }; Home.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Home.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/image.js b/src/icons/image.js index 7720e1c6..84b09073 100644 --- a/src/icons/image.js +++ b/src/icons/image.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Image = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Image = props => { }; Image.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Image.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/inbox.js b/src/icons/inbox.js index 052b92ad..2a0ecac1 100644 --- a/src/icons/inbox.js +++ b/src/icons/inbox.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Inbox = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Inbox = props => { }; Inbox.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Inbox.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/info.js b/src/icons/info.js index d0222b47..662dedc6 100644 --- a/src/icons/info.js +++ b/src/icons/info.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Info = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Info = props => { }; Info.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Info.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/instagram.js b/src/icons/instagram.js index e2d65897..339db6d6 100644 --- a/src/icons/instagram.js +++ b/src/icons/instagram.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Instagram = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Instagram = props => { }; Instagram.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Instagram.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/italic.js b/src/icons/italic.js index 579efed6..a9cfc633 100644 --- a/src/icons/italic.js +++ b/src/icons/italic.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Italic = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Italic = props => { }; Italic.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Italic.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/layers.js b/src/icons/layers.js index 415f523b..343faf16 100644 --- a/src/icons/layers.js +++ b/src/icons/layers.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Layers = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Layers = props => { }; Layers.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Layers.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/layout.js b/src/icons/layout.js index 4fb3f341..0b6e0967 100644 --- a/src/icons/layout.js +++ b/src/icons/layout.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Layout = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Layout = props => { }; Layout.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Layout.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/life-buoy.js b/src/icons/life-buoy.js index fa806828..95225c4b 100644 --- a/src/icons/life-buoy.js +++ b/src/icons/life-buoy.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const LifeBuoy = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -28,11 +29,13 @@ const LifeBuoy = props => { }; LifeBuoy.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; LifeBuoy.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/link-2.js b/src/icons/link-2.js index f6582065..0784201b 100644 --- a/src/icons/link-2.js +++ b/src/icons/link-2.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Link2 = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Link2 = props => { }; Link2.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Link2.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/link.js b/src/icons/link.js index 1e3d66d2..c9aa444f 100644 --- a/src/icons/link.js +++ b/src/icons/link.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Link = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Link = props => { }; Link.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Link.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/linkedin.js b/src/icons/linkedin.js index e0d0255f..a310c09c 100644 --- a/src/icons/linkedin.js +++ b/src/icons/linkedin.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Linkedin = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Linkedin = props => { }; Linkedin.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Linkedin.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/list.js b/src/icons/list.js index b3e6f2d0..5db02a0e 100644 --- a/src/icons/list.js +++ b/src/icons/list.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const List = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -27,11 +28,13 @@ const List = props => { }; List.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; List.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/loader.js b/src/icons/loader.js index 1dd5a791..159cdea2 100644 --- a/src/icons/loader.js +++ b/src/icons/loader.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Loader = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -29,11 +30,13 @@ const Loader = props => { }; Loader.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Loader.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/lock.js b/src/icons/lock.js index 7ac0b2a3..ef02780c 100644 --- a/src/icons/lock.js +++ b/src/icons/lock.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Lock = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Lock = props => { }; Lock.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Lock.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/log-in.js b/src/icons/log-in.js index 61f80f3a..519fc4ae 100644 --- a/src/icons/log-in.js +++ b/src/icons/log-in.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const LogIn = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const LogIn = props => { }; LogIn.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; LogIn.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/log-out.js b/src/icons/log-out.js index 39678fab..41e3b8ce 100644 --- a/src/icons/log-out.js +++ b/src/icons/log-out.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const LogOut = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const LogOut = props => { }; LogOut.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; LogOut.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/mail.js b/src/icons/mail.js index 4baef311..febc1755 100644 --- a/src/icons/mail.js +++ b/src/icons/mail.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Mail = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Mail = props => { }; Mail.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Mail.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/map-pin.js b/src/icons/map-pin.js index b91eec9d..6d2fafb2 100644 --- a/src/icons/map-pin.js +++ b/src/icons/map-pin.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const MapPin = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const MapPin = props => { }; MapPin.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; MapPin.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/map.js b/src/icons/map.js index e63cda6b..f0733b7f 100644 --- a/src/icons/map.js +++ b/src/icons/map.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Map = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Map = props => { }; Map.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Map.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/maximize-2.js b/src/icons/maximize-2.js index bc0a8ff8..f5db83bf 100644 --- a/src/icons/maximize-2.js +++ b/src/icons/maximize-2.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Maximize2 = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const Maximize2 = props => { }; Maximize2.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Maximize2.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/maximize.js b/src/icons/maximize.js index 813c523b..45a1cf01 100644 --- a/src/icons/maximize.js +++ b/src/icons/maximize.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Maximize = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Maximize.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Maximize.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/menu.js b/src/icons/menu.js index a7886a81..11c42e97 100644 --- a/src/icons/menu.js +++ b/src/icons/menu.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Menu = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Menu = props => { }; Menu.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Menu.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/message-circle.js b/src/icons/message-circle.js index d630501c..946e0e9a 100644 --- a/src/icons/message-circle.js +++ b/src/icons/message-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const MessageCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; MessageCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; MessageCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/message-square.js b/src/icons/message-square.js index 4c03cc79..2a715b74 100644 --- a/src/icons/message-square.js +++ b/src/icons/message-square.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const MessageSquare = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; MessageSquare.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; MessageSquare.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/mic-off.js b/src/icons/mic-off.js index 02ace206..7ab54162 100644 --- a/src/icons/mic-off.js +++ b/src/icons/mic-off.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const MicOff = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -26,11 +27,13 @@ const MicOff = props => { }; MicOff.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; MicOff.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/mic.js b/src/icons/mic.js index 0c952eb8..bccd7e9d 100644 --- a/src/icons/mic.js +++ b/src/icons/mic.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Mic = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const Mic = props => { }; Mic.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Mic.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/minimize-2.js b/src/icons/minimize-2.js index 5254b4ad..fe7605e2 100644 --- a/src/icons/minimize-2.js +++ b/src/icons/minimize-2.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Minimize2 = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const Minimize2 = props => { }; Minimize2.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Minimize2.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/minimize.js b/src/icons/minimize.js index 064e56d7..71e269d3 100644 --- a/src/icons/minimize.js +++ b/src/icons/minimize.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Minimize = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Minimize.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Minimize.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/minus-circle.js b/src/icons/minus-circle.js index d5cc1f9b..7f4ca7d8 100644 --- a/src/icons/minus-circle.js +++ b/src/icons/minus-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const MinusCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const MinusCircle = props => { }; MinusCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; MinusCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/minus-square.js b/src/icons/minus-square.js index f490d35d..fd163a60 100644 --- a/src/icons/minus-square.js +++ b/src/icons/minus-square.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const MinusSquare = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const MinusSquare = props => { }; MinusSquare.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; MinusSquare.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/minus.js b/src/icons/minus.js index ae2cb4d1..1384011a 100644 --- a/src/icons/minus.js +++ b/src/icons/minus.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Minus = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Minus.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Minus.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/monitor.js b/src/icons/monitor.js index 576740f3..9b9233ca 100644 --- a/src/icons/monitor.js +++ b/src/icons/monitor.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Monitor = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Monitor = props => { }; Monitor.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Monitor.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/moon.js b/src/icons/moon.js index ce5fee15..6bebaf4a 100644 --- a/src/icons/moon.js +++ b/src/icons/moon.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Moon = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Moon.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Moon.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/more-horizontal.js b/src/icons/more-horizontal.js index abab00fa..b23701cb 100644 --- a/src/icons/more-horizontal.js +++ b/src/icons/more-horizontal.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const MoreHorizontal = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const MoreHorizontal = props => { }; MoreHorizontal.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; MoreHorizontal.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/more-vertical.js b/src/icons/more-vertical.js index 7681dd08..acf074a1 100644 --- a/src/icons/more-vertical.js +++ b/src/icons/more-vertical.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const MoreVertical = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const MoreVertical = props => { }; MoreVertical.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; MoreVertical.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/move.js b/src/icons/move.js index 43bd497a..41692095 100644 --- a/src/icons/move.js +++ b/src/icons/move.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Move = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -27,11 +28,13 @@ const Move = props => { }; Move.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Move.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/music.js b/src/icons/music.js index 06fd47ca..26c72a39 100644 --- a/src/icons/music.js +++ b/src/icons/music.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Music = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Music = props => { }; Music.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Music.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/navigation-2.js b/src/icons/navigation-2.js index 5663bfc5..eb61f782 100644 --- a/src/icons/navigation-2.js +++ b/src/icons/navigation-2.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Navigation2 = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Navigation2.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Navigation2.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/navigation.js b/src/icons/navigation.js index 9b3d8727..53de7578 100644 --- a/src/icons/navigation.js +++ b/src/icons/navigation.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Navigation = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Navigation.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Navigation.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/octagon.js b/src/icons/octagon.js index 6f252078..4999efde 100644 --- a/src/icons/octagon.js +++ b/src/icons/octagon.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Octagon = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Octagon.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Octagon.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/package.js b/src/icons/package.js index 44fb938a..a3e769b1 100644 --- a/src/icons/package.js +++ b/src/icons/package.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Package = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const Package = props => { }; Package.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Package.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/paperclip.js b/src/icons/paperclip.js index c12aa5e3..90380b02 100644 --- a/src/icons/paperclip.js +++ b/src/icons/paperclip.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Paperclip = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Paperclip.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Paperclip.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/pause-circle.js b/src/icons/pause-circle.js index 8e1d2447..b9bab2d7 100644 --- a/src/icons/pause-circle.js +++ b/src/icons/pause-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const PauseCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const PauseCircle = props => { }; PauseCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; PauseCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/pause.js b/src/icons/pause.js index c47c6c7e..bd1fe531 100644 --- a/src/icons/pause.js +++ b/src/icons/pause.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Pause = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Pause = props => { }; Pause.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Pause.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/percent.js b/src/icons/percent.js index 800e4cfe..b3649e3c 100644 --- a/src/icons/percent.js +++ b/src/icons/percent.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Percent = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Percent = props => { }; Percent.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Percent.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/phone-call.js b/src/icons/phone-call.js index 09f0b345..610cea35 100644 --- a/src/icons/phone-call.js +++ b/src/icons/phone-call.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const PhoneCall = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; PhoneCall.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; PhoneCall.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/phone-forwarded.js b/src/icons/phone-forwarded.js index 5a5320d5..22ccae48 100644 --- a/src/icons/phone-forwarded.js +++ b/src/icons/phone-forwarded.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const PhoneForwarded = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const PhoneForwarded = props => { }; PhoneForwarded.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; PhoneForwarded.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/phone-incoming.js b/src/icons/phone-incoming.js index 42298be8..4def60b9 100644 --- a/src/icons/phone-incoming.js +++ b/src/icons/phone-incoming.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const PhoneIncoming = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const PhoneIncoming = props => { }; PhoneIncoming.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; PhoneIncoming.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/phone-missed.js b/src/icons/phone-missed.js index 8dbf57e6..2387606b 100644 --- a/src/icons/phone-missed.js +++ b/src/icons/phone-missed.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const PhoneMissed = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const PhoneMissed = props => { }; PhoneMissed.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; PhoneMissed.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/phone-off.js b/src/icons/phone-off.js index 1019c64e..b147981b 100644 --- a/src/icons/phone-off.js +++ b/src/icons/phone-off.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const PhoneOff = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const PhoneOff = props => { }; PhoneOff.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; PhoneOff.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/phone-outgoing.js b/src/icons/phone-outgoing.js index fbe499c7..98510489 100644 --- a/src/icons/phone-outgoing.js +++ b/src/icons/phone-outgoing.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const PhoneOutgoing = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const PhoneOutgoing = props => { }; PhoneOutgoing.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; PhoneOutgoing.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/phone.js b/src/icons/phone.js index b3af910f..45142056 100644 --- a/src/icons/phone.js +++ b/src/icons/phone.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Phone = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Phone.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Phone.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/pie-chart.js b/src/icons/pie-chart.js index 4aa5ecc8..7f366799 100644 --- a/src/icons/pie-chart.js +++ b/src/icons/pie-chart.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const PieChart = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const PieChart = props => { }; PieChart.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; PieChart.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/play-circle.js b/src/icons/play-circle.js index af25de7a..752da3a8 100644 --- a/src/icons/play-circle.js +++ b/src/icons/play-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const PlayCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const PlayCircle = props => { }; PlayCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; PlayCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/play.js b/src/icons/play.js index 265b8c05..b15f4939 100644 --- a/src/icons/play.js +++ b/src/icons/play.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Play = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Play.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Play.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/plus-circle.js b/src/icons/plus-circle.js index 93ef6840..a8dc5f38 100644 --- a/src/icons/plus-circle.js +++ b/src/icons/plus-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const PlusCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const PlusCircle = props => { }; PlusCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; PlusCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/plus-square.js b/src/icons/plus-square.js index 8a4f7ead..01db9553 100644 --- a/src/icons/plus-square.js +++ b/src/icons/plus-square.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const PlusSquare = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const PlusSquare = props => { }; PlusSquare.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; PlusSquare.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/plus.js b/src/icons/plus.js index aa5c3f56..0737e5cd 100644 --- a/src/icons/plus.js +++ b/src/icons/plus.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Plus = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Plus = props => { }; Plus.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Plus.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/pocket.js b/src/icons/pocket.js index 12379f98..c3f3f763 100644 --- a/src/icons/pocket.js +++ b/src/icons/pocket.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Pocket = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Pocket = props => { }; Pocket.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Pocket.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/power.js b/src/icons/power.js index bfc0e33c..7a6d9f38 100644 --- a/src/icons/power.js +++ b/src/icons/power.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Power = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Power = props => { }; Power.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Power.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/printer.js b/src/icons/printer.js index 1e8faaa8..df2f8dd2 100644 --- a/src/icons/printer.js +++ b/src/icons/printer.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Printer = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Printer = props => { }; Printer.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Printer.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/radio.js b/src/icons/radio.js index 92f03392..a1a6c1f6 100644 --- a/src/icons/radio.js +++ b/src/icons/radio.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Radio = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Radio = props => { }; Radio.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Radio.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/refresh-ccw.js b/src/icons/refresh-ccw.js index c0d7a1ad..5ed5ef39 100644 --- a/src/icons/refresh-ccw.js +++ b/src/icons/refresh-ccw.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const RefreshCcw = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const RefreshCcw = props => { }; RefreshCcw.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; RefreshCcw.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/refresh-cw.js b/src/icons/refresh-cw.js index 2d3c60cb..f39e0dfd 100644 --- a/src/icons/refresh-cw.js +++ b/src/icons/refresh-cw.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const RefreshCw = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const RefreshCw = props => { }; RefreshCw.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; RefreshCw.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/repeat.js b/src/icons/repeat.js index efa7c9fc..3c210e2c 100644 --- a/src/icons/repeat.js +++ b/src/icons/repeat.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Repeat = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const Repeat = props => { }; Repeat.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Repeat.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/rewind.js b/src/icons/rewind.js index d60bbcca..d4e61fb3 100644 --- a/src/icons/rewind.js +++ b/src/icons/rewind.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Rewind = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Rewind = props => { }; Rewind.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Rewind.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/rotate-ccw.js b/src/icons/rotate-ccw.js index 6313be3a..a8c314a3 100644 --- a/src/icons/rotate-ccw.js +++ b/src/icons/rotate-ccw.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const RotateCcw = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const RotateCcw = props => { }; RotateCcw.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; RotateCcw.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/rotate-cw.js b/src/icons/rotate-cw.js index 0975d388..44f656b1 100644 --- a/src/icons/rotate-cw.js +++ b/src/icons/rotate-cw.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const RotateCw = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const RotateCw = props => { }; RotateCw.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; RotateCw.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/rss.js b/src/icons/rss.js index 88dc0b5f..580ed531 100644 --- a/src/icons/rss.js +++ b/src/icons/rss.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Rss = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Rss = props => { }; Rss.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Rss.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/save.js b/src/icons/save.js index 431c1f42..9719b9e7 100644 --- a/src/icons/save.js +++ b/src/icons/save.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Save = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Save = props => { }; Save.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Save.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/scissors.js b/src/icons/scissors.js index d82a374f..5b789645 100644 --- a/src/icons/scissors.js +++ b/src/icons/scissors.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Scissors = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -26,11 +27,13 @@ const Scissors = props => { }; Scissors.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Scissors.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/search.js b/src/icons/search.js index 7a14fa21..82a5158a 100644 --- a/src/icons/search.js +++ b/src/icons/search.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Search = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Search = props => { }; Search.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Search.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/send.js b/src/icons/send.js index 929fd43e..a8cf6bc3 100644 --- a/src/icons/send.js +++ b/src/icons/send.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Send = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Send = props => { }; Send.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Send.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/server.js b/src/icons/server.js index 70e43bfd..9d573a4d 100644 --- a/src/icons/server.js +++ b/src/icons/server.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Server = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const Server = props => { }; Server.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Server.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/settings.js b/src/icons/settings.js index d512a62d..79afbe6e 100644 --- a/src/icons/settings.js +++ b/src/icons/settings.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Settings = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Settings = props => { }; Settings.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Settings.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/share-2.js b/src/icons/share-2.js index ae2b5c97..64146f8c 100644 --- a/src/icons/share-2.js +++ b/src/icons/share-2.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Share2 = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -26,11 +27,13 @@ const Share2 = props => { }; Share2.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Share2.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/share.js b/src/icons/share.js index ee72a1e7..de7df582 100644 --- a/src/icons/share.js +++ b/src/icons/share.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Share = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Share = props => { }; Share.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Share.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/shield-off.js b/src/icons/shield-off.js index ac41e6d3..73eccabd 100644 --- a/src/icons/shield-off.js +++ b/src/icons/shield-off.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ShieldOff = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const ShieldOff = props => { }; ShieldOff.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ShieldOff.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/shield.js b/src/icons/shield.js index b4875d3e..5f3cbfae 100644 --- a/src/icons/shield.js +++ b/src/icons/shield.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Shield = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Shield.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Shield.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/shopping-bag.js b/src/icons/shopping-bag.js index e3cb289d..bda35cf0 100644 --- a/src/icons/shopping-bag.js +++ b/src/icons/shopping-bag.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ShoppingBag = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const ShoppingBag = props => { }; ShoppingBag.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ShoppingBag.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/shopping-cart.js b/src/icons/shopping-cart.js index 278b95d6..db42ff4c 100644 --- a/src/icons/shopping-cart.js +++ b/src/icons/shopping-cart.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ShoppingCart = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const ShoppingCart = props => { }; ShoppingCart.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ShoppingCart.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/shuffle.js b/src/icons/shuffle.js index 22467cfd..f0f2f129 100644 --- a/src/icons/shuffle.js +++ b/src/icons/shuffle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Shuffle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -26,11 +27,13 @@ const Shuffle = props => { }; Shuffle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Shuffle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/sidebar.js b/src/icons/sidebar.js index 084d5c87..2854499c 100644 --- a/src/icons/sidebar.js +++ b/src/icons/sidebar.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Sidebar = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Sidebar = props => { }; Sidebar.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Sidebar.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/skip-back.js b/src/icons/skip-back.js index 24c6bf03..7f09a6c7 100644 --- a/src/icons/skip-back.js +++ b/src/icons/skip-back.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const SkipBack = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const SkipBack = props => { }; SkipBack.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; SkipBack.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/skip-forward.js b/src/icons/skip-forward.js index af385b88..c62eb92c 100644 --- a/src/icons/skip-forward.js +++ b/src/icons/skip-forward.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const SkipForward = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const SkipForward = props => { }; SkipForward.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; SkipForward.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/slack.js b/src/icons/slack.js index a997da31..efdad5e9 100644 --- a/src/icons/slack.js +++ b/src/icons/slack.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Slack = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -26,11 +27,13 @@ const Slack = props => { }; Slack.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Slack.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/slash.js b/src/icons/slash.js index cffcc0ce..fc6738af 100644 --- a/src/icons/slash.js +++ b/src/icons/slash.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Slash = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Slash = props => { }; Slash.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Slash.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/sliders.js b/src/icons/sliders.js index 7a9ae132..19d73cc5 100644 --- a/src/icons/sliders.js +++ b/src/icons/sliders.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Sliders = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -30,11 +31,13 @@ const Sliders = props => { }; Sliders.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Sliders.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/smartphone.js b/src/icons/smartphone.js index 5c93ba0b..490f1391 100644 --- a/src/icons/smartphone.js +++ b/src/icons/smartphone.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Smartphone = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Smartphone = props => { }; Smartphone.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Smartphone.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/speaker.js b/src/icons/speaker.js index 4a1da2bf..5014e91d 100644 --- a/src/icons/speaker.js +++ b/src/icons/speaker.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Speaker = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Speaker = props => { }; Speaker.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Speaker.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/square.js b/src/icons/square.js index a10a1434..fe69597e 100644 --- a/src/icons/square.js +++ b/src/icons/square.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Square = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Square.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Square.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/star.js b/src/icons/star.js index c48aee72..177f45d2 100644 --- a/src/icons/star.js +++ b/src/icons/star.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Star = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Star.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Star.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/stop-circle.js b/src/icons/stop-circle.js index 024e6db0..d8582136 100644 --- a/src/icons/stop-circle.js +++ b/src/icons/stop-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const StopCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const StopCircle = props => { }; StopCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; StopCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/sun.js b/src/icons/sun.js index 8c2e42b7..1b5c8978 100644 --- a/src/icons/sun.js +++ b/src/icons/sun.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Sun = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -30,11 +31,13 @@ const Sun = props => { }; Sun.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Sun.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/sunrise.js b/src/icons/sunrise.js index b479a963..5610856b 100644 --- a/src/icons/sunrise.js +++ b/src/icons/sunrise.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Sunrise = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -29,11 +30,13 @@ const Sunrise = props => { }; Sunrise.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Sunrise.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/sunset.js b/src/icons/sunset.js index 92dea60f..17e23913 100644 --- a/src/icons/sunset.js +++ b/src/icons/sunset.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Sunset = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -29,11 +30,13 @@ const Sunset = props => { }; Sunset.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Sunset.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/tablet.js b/src/icons/tablet.js index 1aafaee2..c9bd4e5d 100644 --- a/src/icons/tablet.js +++ b/src/icons/tablet.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Tablet = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} { }; Tablet.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Tablet.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/tag.js b/src/icons/tag.js index 722cb364..9721ca0a 100644 --- a/src/icons/tag.js +++ b/src/icons/tag.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Tag = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Tag = props => { }; Tag.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Tag.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/target.js b/src/icons/target.js index d9569583..4090c4ed 100644 --- a/src/icons/target.js +++ b/src/icons/target.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Target = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Target = props => { }; Target.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Target.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/terminal.js b/src/icons/terminal.js index be00160c..1e0f04b3 100644 --- a/src/icons/terminal.js +++ b/src/icons/terminal.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Terminal = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Terminal = props => { }; Terminal.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Terminal.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/thermometer.js b/src/icons/thermometer.js index 4f31272e..40b18a8c 100644 --- a/src/icons/thermometer.js +++ b/src/icons/thermometer.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Thermometer = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Thermometer.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Thermometer.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/thumbs-down.js b/src/icons/thumbs-down.js index d7794018..331e2403 100644 --- a/src/icons/thumbs-down.js +++ b/src/icons/thumbs-down.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ThumbsDown = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; ThumbsDown.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ThumbsDown.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/thumbs-up.js b/src/icons/thumbs-up.js index 9d52d979..66fed36a 100644 --- a/src/icons/thumbs-up.js +++ b/src/icons/thumbs-up.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ThumbsUp = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; ThumbsUp.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ThumbsUp.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/toggle-left.js b/src/icons/toggle-left.js index d1dbdf47..78490a3d 100644 --- a/src/icons/toggle-left.js +++ b/src/icons/toggle-left.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ToggleLeft = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ToggleLeft = props => { }; ToggleLeft.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ToggleLeft.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/toggle-right.js b/src/icons/toggle-right.js index d27a38bd..7dce0dc3 100644 --- a/src/icons/toggle-right.js +++ b/src/icons/toggle-right.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ToggleRight = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const ToggleRight = props => { }; ToggleRight.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ToggleRight.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/trash-2.js b/src/icons/trash-2.js index 0471c15f..b7c3214a 100644 --- a/src/icons/trash-2.js +++ b/src/icons/trash-2.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Trash2 = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const Trash2 = props => { }; Trash2.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Trash2.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/trash.js b/src/icons/trash.js index 776bceb2..129f10fd 100644 --- a/src/icons/trash.js +++ b/src/icons/trash.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Trash = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Trash = props => { }; Trash.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Trash.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/trending-down.js b/src/icons/trending-down.js index 48c11a66..3ac3ffea 100644 --- a/src/icons/trending-down.js +++ b/src/icons/trending-down.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const TrendingDown = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const TrendingDown = props => { }; TrendingDown.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; TrendingDown.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/trending-up.js b/src/icons/trending-up.js index 103018ce..f87b6f4d 100644 --- a/src/icons/trending-up.js +++ b/src/icons/trending-up.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const TrendingUp = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const TrendingUp = props => { }; TrendingUp.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; TrendingUp.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/triangle.js b/src/icons/triangle.js index d4d5cfa5..f0b81a54 100644 --- a/src/icons/triangle.js +++ b/src/icons/triangle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Triangle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Triangle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Triangle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/truck.js b/src/icons/truck.js index 81bebb5e..c045fcb4 100644 --- a/src/icons/truck.js +++ b/src/icons/truck.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Truck = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const Truck = props => { }; Truck.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Truck.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/tv.js b/src/icons/tv.js index 4ca67563..5345b061 100644 --- a/src/icons/tv.js +++ b/src/icons/tv.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Tv = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Tv = props => { }; Tv.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Tv.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/twitter.js b/src/icons/twitter.js index 1a46f5e5..f43a01e3 100644 --- a/src/icons/twitter.js +++ b/src/icons/twitter.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Twitter = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Twitter.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Twitter.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/type.js b/src/icons/type.js index b911e196..41f7940a 100644 --- a/src/icons/type.js +++ b/src/icons/type.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Type = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Type = props => { }; Type.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Type.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/umbrella.js b/src/icons/umbrella.js index a860d563..4c387127 100644 --- a/src/icons/umbrella.js +++ b/src/icons/umbrella.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Umbrella = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Umbrella.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Umbrella.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/underline.js b/src/icons/underline.js index a4e75b0c..fcd31b04 100644 --- a/src/icons/underline.js +++ b/src/icons/underline.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Underline = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Underline = props => { }; Underline.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Underline.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/unlock.js b/src/icons/unlock.js index cd17ac0b..56eb78b8 100644 --- a/src/icons/unlock.js +++ b/src/icons/unlock.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Unlock = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Unlock = props => { }; Unlock.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Unlock.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/upload-cloud.js b/src/icons/upload-cloud.js index ff01d070..8ed16b09 100644 --- a/src/icons/upload-cloud.js +++ b/src/icons/upload-cloud.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const UploadCloud = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const UploadCloud = props => { }; UploadCloud.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; UploadCloud.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/upload.js b/src/icons/upload.js index 2cbed1f7..ddbad329 100644 --- a/src/icons/upload.js +++ b/src/icons/upload.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Upload = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Upload = props => { }; Upload.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Upload.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/user-check.js b/src/icons/user-check.js index 5dbbc6f2..d9025a89 100644 --- a/src/icons/user-check.js +++ b/src/icons/user-check.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const UserCheck = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const UserCheck = props => { }; UserCheck.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; UserCheck.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/user-minus.js b/src/icons/user-minus.js index 8ac459ff..c653e8a0 100644 --- a/src/icons/user-minus.js +++ b/src/icons/user-minus.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const UserMinus = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const UserMinus = props => { }; UserMinus.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; UserMinus.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/user-plus.js b/src/icons/user-plus.js index b1a55d64..a33bf47e 100644 --- a/src/icons/user-plus.js +++ b/src/icons/user-plus.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const UserPlus = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const UserPlus = props => { }; UserPlus.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; UserPlus.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/user-x.js b/src/icons/user-x.js index 2b0346f0..f7560604 100644 --- a/src/icons/user-x.js +++ b/src/icons/user-x.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const UserX = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const UserX = props => { }; UserX.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; UserX.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/user.js b/src/icons/user.js index 059ac41f..e88b63ad 100644 --- a/src/icons/user.js +++ b/src/icons/user.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const User = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const User = props => { }; User.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; User.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/users.js b/src/icons/users.js index 695445bc..f2f6c4a5 100644 --- a/src/icons/users.js +++ b/src/icons/users.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Users = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const Users = props => { }; Users.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Users.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/video-off.js b/src/icons/video-off.js index cfd7c084..3ae5c42a 100644 --- a/src/icons/video-off.js +++ b/src/icons/video-off.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const VideoOff = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const VideoOff = props => { }; VideoOff.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; VideoOff.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/video.js b/src/icons/video.js index 72188d8f..55847162 100644 --- a/src/icons/video.js +++ b/src/icons/video.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Video = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Video = props => { }; Video.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Video.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/voicemail.js b/src/icons/voicemail.js index 61d59b17..70e73604 100644 --- a/src/icons/voicemail.js +++ b/src/icons/voicemail.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Voicemail = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Voicemail = props => { }; Voicemail.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Voicemail.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/volume-1.js b/src/icons/volume-1.js index 64bdb54b..228524e8 100644 --- a/src/icons/volume-1.js +++ b/src/icons/volume-1.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Volume1 = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Volume1 = props => { }; Volume1.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Volume1.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/volume-2.js b/src/icons/volume-2.js index 7f07011c..204c89fe 100644 --- a/src/icons/volume-2.js +++ b/src/icons/volume-2.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Volume2 = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const Volume2 = props => { }; Volume2.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Volume2.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/volume-x.js b/src/icons/volume-x.js index 1b227f18..e34ab262 100644 --- a/src/icons/volume-x.js +++ b/src/icons/volume-x.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const VolumeX = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const VolumeX = props => { }; VolumeX.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; VolumeX.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/volume.js b/src/icons/volume.js index df27a817..8744ed15 100644 --- a/src/icons/volume.js +++ b/src/icons/volume.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Volume = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Volume.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Volume.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/watch.js b/src/icons/watch.js index 234736a0..34818776 100644 --- a/src/icons/watch.js +++ b/src/icons/watch.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Watch = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const Watch = props => { }; Watch.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Watch.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/wifi-off.js b/src/icons/wifi-off.js index 9c9751ff..1d2d9277 100644 --- a/src/icons/wifi-off.js +++ b/src/icons/wifi-off.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const WifiOff = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -28,11 +29,13 @@ const WifiOff = props => { }; WifiOff.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; WifiOff.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/wifi.js b/src/icons/wifi.js index f6c0b0d9..499c82d3 100644 --- a/src/icons/wifi.js +++ b/src/icons/wifi.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Wifi = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const Wifi = props => { }; Wifi.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Wifi.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/wind.js b/src/icons/wind.js index a39bb940..b9a5557d 100644 --- a/src/icons/wind.js +++ b/src/icons/wind.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Wind = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Wind.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Wind.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/x-circle.js b/src/icons/x-circle.js index c410ac13..165645d7 100644 --- a/src/icons/x-circle.js +++ b/src/icons/x-circle.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const XCircle = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const XCircle = props => { }; XCircle.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; XCircle.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/x-square.js b/src/icons/x-square.js index 5f15ba76..a6f4ecab 100644 --- a/src/icons/x-square.js +++ b/src/icons/x-square.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const XSquare = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const XSquare = props => { }; XSquare.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; XSquare.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/x.js b/src/icons/x.js index 8ce36ce4..cda7c7d3 100644 --- a/src/icons/x.js +++ b/src/icons/x.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const X = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -23,11 +24,13 @@ const X = props => { }; X.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; X.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/zap-off.js b/src/icons/zap-off.js index b17776ec..2ee21945 100644 --- a/src/icons/zap-off.js +++ b/src/icons/zap-off.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ZapOff = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const ZapOff = props => { }; ZapOff.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ZapOff.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/zap.js b/src/icons/zap.js index 44e2f559..d05bfc5d 100644 --- a/src/icons/zap.js +++ b/src/icons/zap.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const Zap = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} ); }; Zap.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Zap.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/zoom-in.js b/src/icons/zoom-in.js index 3a780a53..02a8a780 100644 --- a/src/icons/zoom-in.js +++ b/src/icons/zoom-in.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ZoomIn = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -25,11 +26,13 @@ const ZoomIn = props => { }; ZoomIn.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ZoomIn.defaultProps = { + children: null, color: 'currentColor', size: '24', }; diff --git a/src/icons/zoom-out.js b/src/icons/zoom-out.js index 1b300174..76369dfe 100644 --- a/src/icons/zoom-out.js +++ b/src/icons/zoom-out.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; const ZoomOut = props => { - const { color, size, ...otherProps } = props; + const { children, color, size, ...otherProps } = props; return ( { strokeLinejoin="round" {...otherProps} > + {children} @@ -24,11 +25,13 @@ const ZoomOut = props => { }; ZoomOut.propTypes = { + children: PropTypes.object, color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; ZoomOut.defaultProps = { + children: null, color: 'currentColor', size: '24', };