diff --git a/build/generate.js b/build/generate.js index 5b9ce9de..c3445c67 100644 --- a/build/generate.js +++ b/build/generate.js @@ -29,8 +29,7 @@ uniconsConfig.forEach(icon => { const template = `import React from 'react'; import PropTypes from 'prop-types'; -const ${name} = (props) => { - const { color, size, ...otherProps } = props +const ${name} = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -48,11 +47,6 @@ ${name}.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -${name}.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default ${name};` fs.writeFileSync(location, template, 'utf-8') diff --git a/icons/uil-0-plus.js b/icons/uil-0-plus.js index bdd49048..ee923c0c 100644 --- a/icons/uil-0-plus.js +++ b/icons/uil-0-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const Uil0Plus = (props) => { - const { color, size, ...otherProps } = props +const Uil0Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ Uil0Plus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -Uil0Plus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default Uil0Plus; \ No newline at end of file diff --git a/icons/uil-10-plus.js b/icons/uil-10-plus.js index ad321908..3cc64b1c 100644 --- a/icons/uil-10-plus.js +++ b/icons/uil-10-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const Uil10Plus = (props) => { - const { color, size, ...otherProps } = props +const Uil10Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ Uil10Plus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -Uil10Plus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default Uil10Plus; \ No newline at end of file diff --git a/icons/uil-12-plus.js b/icons/uil-12-plus.js index 8577dd08..2e9aba9f 100644 --- a/icons/uil-12-plus.js +++ b/icons/uil-12-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const Uil12Plus = (props) => { - const { color, size, ...otherProps } = props +const Uil12Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ Uil12Plus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -Uil12Plus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default Uil12Plus; \ No newline at end of file diff --git a/icons/uil-13-plus.js b/icons/uil-13-plus.js index 40722d79..2d2c63c6 100644 --- a/icons/uil-13-plus.js +++ b/icons/uil-13-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const Uil13Plus = (props) => { - const { color, size, ...otherProps } = props +const Uil13Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ Uil13Plus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -Uil13Plus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default Uil13Plus; \ No newline at end of file diff --git a/icons/uil-16-plus.js b/icons/uil-16-plus.js index 385627f6..fcf38b89 100644 --- a/icons/uil-16-plus.js +++ b/icons/uil-16-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const Uil16Plus = (props) => { - const { color, size, ...otherProps } = props +const Uil16Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ Uil16Plus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -Uil16Plus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default Uil16Plus; \ No newline at end of file diff --git a/icons/uil-17-plus.js b/icons/uil-17-plus.js index 92c0bb43..cedd9225 100644 --- a/icons/uil-17-plus.js +++ b/icons/uil-17-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const Uil17Plus = (props) => { - const { color, size, ...otherProps } = props +const Uil17Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ Uil17Plus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -Uil17Plus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default Uil17Plus; \ No newline at end of file diff --git a/icons/uil-18-plus.js b/icons/uil-18-plus.js index 2e849f6b..0de6c526 100644 --- a/icons/uil-18-plus.js +++ b/icons/uil-18-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const Uil18Plus = (props) => { - const { color, size, ...otherProps } = props +const Uil18Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ Uil18Plus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -Uil18Plus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default Uil18Plus; \ No newline at end of file diff --git a/icons/uil-21-plus.js b/icons/uil-21-plus.js index 0f08b35d..b0c678f1 100644 --- a/icons/uil-21-plus.js +++ b/icons/uil-21-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const Uil21Plus = (props) => { - const { color, size, ...otherProps } = props +const Uil21Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ Uil21Plus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -Uil21Plus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default Uil21Plus; \ No newline at end of file diff --git a/icons/uil-3-plus.js b/icons/uil-3-plus.js index 63c60051..46189be8 100644 --- a/icons/uil-3-plus.js +++ b/icons/uil-3-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const Uil3Plus = (props) => { - const { color, size, ...otherProps } = props +const Uil3Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ Uil3Plus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -Uil3Plus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default Uil3Plus; \ No newline at end of file diff --git a/icons/uil-500px.js b/icons/uil-500px.js index e4ebae78..4041c289 100644 --- a/icons/uil-500px.js +++ b/icons/uil-500px.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const Uil500px = (props) => { - const { color, size, ...otherProps } = props +const Uil500px = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ Uil500px.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -Uil500px.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default Uil500px; \ No newline at end of file diff --git a/icons/uil-6-plus.js b/icons/uil-6-plus.js index cff5b7ab..b9aca771 100644 --- a/icons/uil-6-plus.js +++ b/icons/uil-6-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const Uil6Plus = (props) => { - const { color, size, ...otherProps } = props +const Uil6Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ Uil6Plus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -Uil6Plus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default Uil6Plus; \ No newline at end of file diff --git a/icons/uil-abacus.js b/icons/uil-abacus.js index 67c568f3..a1db5fd8 100644 --- a/icons/uil-abacus.js +++ b/icons/uil-abacus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAbacus = (props) => { - const { color, size, ...otherProps } = props +const UilAbacus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAbacus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAbacus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAbacus; \ No newline at end of file diff --git a/icons/uil-accessible-icon-alt.js b/icons/uil-accessible-icon-alt.js index 78f23b5b..2bc74f2f 100644 --- a/icons/uil-accessible-icon-alt.js +++ b/icons/uil-accessible-icon-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAccessibleIconAlt = (props) => { - const { color, size, ...otherProps } = props +const UilAccessibleIconAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAccessibleIconAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAccessibleIconAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAccessibleIconAlt; \ No newline at end of file diff --git a/icons/uil-adjust-alt.js b/icons/uil-adjust-alt.js index 4da1d488..8b92b1d3 100644 --- a/icons/uil-adjust-alt.js +++ b/icons/uil-adjust-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAdjustAlt = (props) => { - const { color, size, ...otherProps } = props +const UilAdjustAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAdjustAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAdjustAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAdjustAlt; \ No newline at end of file diff --git a/icons/uil-adjust-circle.js b/icons/uil-adjust-circle.js index b99118e2..8987acf8 100644 --- a/icons/uil-adjust-circle.js +++ b/icons/uil-adjust-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAdjustCircle = (props) => { - const { color, size, ...otherProps } = props +const UilAdjustCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAdjustCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAdjustCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAdjustCircle; \ No newline at end of file diff --git a/icons/uil-adjust-half.js b/icons/uil-adjust-half.js index 4bc29b7f..39336254 100644 --- a/icons/uil-adjust-half.js +++ b/icons/uil-adjust-half.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAdjustHalf = (props) => { - const { color, size, ...otherProps } = props +const UilAdjustHalf = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAdjustHalf.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAdjustHalf.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAdjustHalf; \ No newline at end of file diff --git a/icons/uil-adjust.js b/icons/uil-adjust.js index 34a19c47..518db73a 100644 --- a/icons/uil-adjust.js +++ b/icons/uil-adjust.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAdjust = (props) => { - const { color, size, ...otherProps } = props +const UilAdjust = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAdjust.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAdjust.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAdjust; \ No newline at end of file diff --git a/icons/uil-adobe-alt.js b/icons/uil-adobe-alt.js index 47906a18..b18ba57d 100644 --- a/icons/uil-adobe-alt.js +++ b/icons/uil-adobe-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAdobeAlt = (props) => { - const { color, size, ...otherProps } = props +const UilAdobeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAdobeAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAdobeAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAdobeAlt; \ No newline at end of file diff --git a/icons/uil-adobe.js b/icons/uil-adobe.js index 1df0006e..6dee9d10 100644 --- a/icons/uil-adobe.js +++ b/icons/uil-adobe.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAdobe = (props) => { - const { color, size, ...otherProps } = props +const UilAdobe = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAdobe.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAdobe.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAdobe; \ No newline at end of file diff --git a/icons/uil-airplay.js b/icons/uil-airplay.js index 7dc0f8ac..227901c8 100644 --- a/icons/uil-airplay.js +++ b/icons/uil-airplay.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAirplay = (props) => { - const { color, size, ...otherProps } = props +const UilAirplay = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAirplay.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAirplay.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAirplay; \ No newline at end of file diff --git a/icons/uil-align-alt.js b/icons/uil-align-alt.js index 662adab5..fcbcd5c2 100644 --- a/icons/uil-align-alt.js +++ b/icons/uil-align-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAlignAlt = (props) => { - const { color, size, ...otherProps } = props +const UilAlignAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAlignAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAlignAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAlignAlt; \ No newline at end of file diff --git a/icons/uil-align-center-alt.js b/icons/uil-align-center-alt.js index 7c9216bf..3eb32c6c 100644 --- a/icons/uil-align-center-alt.js +++ b/icons/uil-align-center-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAlignCenterAlt = (props) => { - const { color, size, ...otherProps } = props +const UilAlignCenterAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAlignCenterAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAlignCenterAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAlignCenterAlt; \ No newline at end of file diff --git a/icons/uil-align-center-h.js b/icons/uil-align-center-h.js index 4c975bf0..2eccede0 100644 --- a/icons/uil-align-center-h.js +++ b/icons/uil-align-center-h.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAlignCenterH = (props) => { - const { color, size, ...otherProps } = props +const UilAlignCenterH = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAlignCenterH.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAlignCenterH.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAlignCenterH; \ No newline at end of file diff --git a/icons/uil-align-center-justify.js b/icons/uil-align-center-justify.js index b5deaeaf..1d433b8f 100644 --- a/icons/uil-align-center-justify.js +++ b/icons/uil-align-center-justify.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAlignCenterJustify = (props) => { - const { color, size, ...otherProps } = props +const UilAlignCenterJustify = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAlignCenterJustify.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAlignCenterJustify.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAlignCenterJustify; \ No newline at end of file diff --git a/icons/uil-align-center-v.js b/icons/uil-align-center-v.js index 48d33094..0dafbe48 100644 --- a/icons/uil-align-center-v.js +++ b/icons/uil-align-center-v.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAlignCenterV = (props) => { - const { color, size, ...otherProps } = props +const UilAlignCenterV = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAlignCenterV.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAlignCenterV.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAlignCenterV; \ No newline at end of file diff --git a/icons/uil-align-center.js b/icons/uil-align-center.js index fabc0de5..781f9ac9 100644 --- a/icons/uil-align-center.js +++ b/icons/uil-align-center.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAlignCenter = (props) => { - const { color, size, ...otherProps } = props +const UilAlignCenter = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAlignCenter.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAlignCenter.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAlignCenter; \ No newline at end of file diff --git a/icons/uil-align-justify.js b/icons/uil-align-justify.js index 7c933ee3..1f158a28 100644 --- a/icons/uil-align-justify.js +++ b/icons/uil-align-justify.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAlignJustify = (props) => { - const { color, size, ...otherProps } = props +const UilAlignJustify = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAlignJustify.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAlignJustify.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAlignJustify; \ No newline at end of file diff --git a/icons/uil-align-left-justify.js b/icons/uil-align-left-justify.js index d0c7fccc..e4db80bd 100644 --- a/icons/uil-align-left-justify.js +++ b/icons/uil-align-left-justify.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAlignLeftJustify = (props) => { - const { color, size, ...otherProps } = props +const UilAlignLeftJustify = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAlignLeftJustify.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAlignLeftJustify.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAlignLeftJustify; \ No newline at end of file diff --git a/icons/uil-align-left.js b/icons/uil-align-left.js index 4d1fd791..76a11620 100644 --- a/icons/uil-align-left.js +++ b/icons/uil-align-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAlignLeft = (props) => { - const { color, size, ...otherProps } = props +const UilAlignLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAlignLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAlignLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAlignLeft; \ No newline at end of file diff --git a/icons/uil-align-letter-right.js b/icons/uil-align-letter-right.js index 95e8dea0..2531f257 100644 --- a/icons/uil-align-letter-right.js +++ b/icons/uil-align-letter-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAlignLetterRight = (props) => { - const { color, size, ...otherProps } = props +const UilAlignLetterRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAlignLetterRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAlignLetterRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAlignLetterRight; \ No newline at end of file diff --git a/icons/uil-align-right-justify.js b/icons/uil-align-right-justify.js index e3d87199..5176d69c 100644 --- a/icons/uil-align-right-justify.js +++ b/icons/uil-align-right-justify.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAlignRightJustify = (props) => { - const { color, size, ...otherProps } = props +const UilAlignRightJustify = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAlignRightJustify.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAlignRightJustify.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAlignRightJustify; \ No newline at end of file diff --git a/icons/uil-align-right.js b/icons/uil-align-right.js index 94658df4..74bdff31 100644 --- a/icons/uil-align-right.js +++ b/icons/uil-align-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAlignRight = (props) => { - const { color, size, ...otherProps } = props +const UilAlignRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAlignRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAlignRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAlignRight; \ No newline at end of file diff --git a/icons/uil-align.js b/icons/uil-align.js index 17c3cae3..e81a3576 100644 --- a/icons/uil-align.js +++ b/icons/uil-align.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAlign = (props) => { - const { color, size, ...otherProps } = props +const UilAlign = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAlign.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAlign.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAlign; \ No newline at end of file diff --git a/icons/uil-amazon.js b/icons/uil-amazon.js index 397fcf5c..a86b3127 100644 --- a/icons/uil-amazon.js +++ b/icons/uil-amazon.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAmazon = (props) => { - const { color, size, ...otherProps } = props +const UilAmazon = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAmazon.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAmazon.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAmazon; \ No newline at end of file diff --git a/icons/uil-ambulance.js b/icons/uil-ambulance.js index 807e9104..cce43bb7 100644 --- a/icons/uil-ambulance.js +++ b/icons/uil-ambulance.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAmbulance = (props) => { - const { color, size, ...otherProps } = props +const UilAmbulance = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAmbulance.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAmbulance.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAmbulance; \ No newline at end of file diff --git a/icons/uil-analysis.js b/icons/uil-analysis.js index 118228f1..96ff8295 100644 --- a/icons/uil-analysis.js +++ b/icons/uil-analysis.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAnalysis = (props) => { - const { color, size, ...otherProps } = props +const UilAnalysis = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAnalysis.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAnalysis.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAnalysis; \ No newline at end of file diff --git a/icons/uil-analytics.js b/icons/uil-analytics.js index 32da0ee9..cf8e327e 100644 --- a/icons/uil-analytics.js +++ b/icons/uil-analytics.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAnalytics = (props) => { - const { color, size, ...otherProps } = props +const UilAnalytics = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAnalytics.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAnalytics.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAnalytics; \ No newline at end of file diff --git a/icons/uil-anchor.js b/icons/uil-anchor.js index 1bd3bd4c..1eee73d6 100644 --- a/icons/uil-anchor.js +++ b/icons/uil-anchor.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAnchor = (props) => { - const { color, size, ...otherProps } = props +const UilAnchor = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAnchor.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAnchor.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAnchor; \ No newline at end of file diff --git a/icons/uil-android-alt.js b/icons/uil-android-alt.js index e1972776..2278a74c 100644 --- a/icons/uil-android-alt.js +++ b/icons/uil-android-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAndroidAlt = (props) => { - const { color, size, ...otherProps } = props +const UilAndroidAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAndroidAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAndroidAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAndroidAlt; \ No newline at end of file diff --git a/icons/uil-android-phone-slash.js b/icons/uil-android-phone-slash.js index 0e97c61d..a760e69a 100644 --- a/icons/uil-android-phone-slash.js +++ b/icons/uil-android-phone-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAndroidPhoneSlash = (props) => { - const { color, size, ...otherProps } = props +const UilAndroidPhoneSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAndroidPhoneSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAndroidPhoneSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAndroidPhoneSlash; \ No newline at end of file diff --git a/icons/uil-android.js b/icons/uil-android.js index 164e4454..f2ac3771 100644 --- a/icons/uil-android.js +++ b/icons/uil-android.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAndroid = (props) => { - const { color, size, ...otherProps } = props +const UilAndroid = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAndroid.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAndroid.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAndroid; \ No newline at end of file diff --git a/icons/uil-angle-double-down.js b/icons/uil-angle-double-down.js index 7471ea13..e1c4f538 100644 --- a/icons/uil-angle-double-down.js +++ b/icons/uil-angle-double-down.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAngleDoubleDown = (props) => { - const { color, size, ...otherProps } = props +const UilAngleDoubleDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAngleDoubleDown.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAngleDoubleDown.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAngleDoubleDown; \ No newline at end of file diff --git a/icons/uil-angle-double-left.js b/icons/uil-angle-double-left.js index 20043597..2da76b26 100644 --- a/icons/uil-angle-double-left.js +++ b/icons/uil-angle-double-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAngleDoubleLeft = (props) => { - const { color, size, ...otherProps } = props +const UilAngleDoubleLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAngleDoubleLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAngleDoubleLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAngleDoubleLeft; \ No newline at end of file diff --git a/icons/uil-angle-double-right.js b/icons/uil-angle-double-right.js index f20a6bc3..1f861c2a 100644 --- a/icons/uil-angle-double-right.js +++ b/icons/uil-angle-double-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAngleDoubleRight = (props) => { - const { color, size, ...otherProps } = props +const UilAngleDoubleRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAngleDoubleRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAngleDoubleRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAngleDoubleRight; \ No newline at end of file diff --git a/icons/uil-angle-double-up.js b/icons/uil-angle-double-up.js index 6dba5f93..b00c2a22 100644 --- a/icons/uil-angle-double-up.js +++ b/icons/uil-angle-double-up.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAngleDoubleUp = (props) => { - const { color, size, ...otherProps } = props +const UilAngleDoubleUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAngleDoubleUp.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAngleDoubleUp.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAngleDoubleUp; \ No newline at end of file diff --git a/icons/uil-angle-down.js b/icons/uil-angle-down.js index a2628768..c88645b5 100644 --- a/icons/uil-angle-down.js +++ b/icons/uil-angle-down.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAngleDown = (props) => { - const { color, size, ...otherProps } = props +const UilAngleDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAngleDown.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAngleDown.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAngleDown; \ No newline at end of file diff --git a/icons/uil-angle-left-b.js b/icons/uil-angle-left-b.js index e5977793..e62797c6 100644 --- a/icons/uil-angle-left-b.js +++ b/icons/uil-angle-left-b.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAngleLeftB = (props) => { - const { color, size, ...otherProps } = props +const UilAngleLeftB = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAngleLeftB.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAngleLeftB.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAngleLeftB; \ No newline at end of file diff --git a/icons/uil-angle-left.js b/icons/uil-angle-left.js index 09393d1b..efe5aed7 100644 --- a/icons/uil-angle-left.js +++ b/icons/uil-angle-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAngleLeft = (props) => { - const { color, size, ...otherProps } = props +const UilAngleLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAngleLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAngleLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAngleLeft; \ No newline at end of file diff --git a/icons/uil-angle-right-b.js b/icons/uil-angle-right-b.js index a961e26c..ad869cec 100644 --- a/icons/uil-angle-right-b.js +++ b/icons/uil-angle-right-b.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAngleRightB = (props) => { - const { color, size, ...otherProps } = props +const UilAngleRightB = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAngleRightB.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAngleRightB.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAngleRightB; \ No newline at end of file diff --git a/icons/uil-angle-right.js b/icons/uil-angle-right.js index f9761823..4b707906 100644 --- a/icons/uil-angle-right.js +++ b/icons/uil-angle-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAngleRight = (props) => { - const { color, size, ...otherProps } = props +const UilAngleRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAngleRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAngleRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAngleRight; \ No newline at end of file diff --git a/icons/uil-angle-up.js b/icons/uil-angle-up.js index 612d0cc4..72d6dfcb 100644 --- a/icons/uil-angle-up.js +++ b/icons/uil-angle-up.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAngleUp = (props) => { - const { color, size, ...otherProps } = props +const UilAngleUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAngleUp.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAngleUp.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAngleUp; \ No newline at end of file diff --git a/icons/uil-angry.js b/icons/uil-angry.js index 3bc39f38..14325075 100644 --- a/icons/uil-angry.js +++ b/icons/uil-angry.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAngry = (props) => { - const { color, size, ...otherProps } = props +const UilAngry = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAngry.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAngry.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAngry; \ No newline at end of file diff --git a/icons/uil-ankh.js b/icons/uil-ankh.js index fedfc672..b2375ec2 100644 --- a/icons/uil-ankh.js +++ b/icons/uil-ankh.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAnkh = (props) => { - const { color, size, ...otherProps } = props +const UilAnkh = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAnkh.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAnkh.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAnkh; \ No newline at end of file diff --git a/icons/uil-annoyed-alt.js b/icons/uil-annoyed-alt.js index 5524d090..447d0536 100644 --- a/icons/uil-annoyed-alt.js +++ b/icons/uil-annoyed-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAnnoyedAlt = (props) => { - const { color, size, ...otherProps } = props +const UilAnnoyedAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAnnoyedAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAnnoyedAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAnnoyedAlt; \ No newline at end of file diff --git a/icons/uil-annoyed.js b/icons/uil-annoyed.js index 47b6e5d8..a678353a 100644 --- a/icons/uil-annoyed.js +++ b/icons/uil-annoyed.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAnnoyed = (props) => { - const { color, size, ...otherProps } = props +const UilAnnoyed = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAnnoyed.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAnnoyed.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAnnoyed; \ No newline at end of file diff --git a/icons/uil-apple-alt.js b/icons/uil-apple-alt.js index e243557f..a5ec869c 100644 --- a/icons/uil-apple-alt.js +++ b/icons/uil-apple-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAppleAlt = (props) => { - const { color, size, ...otherProps } = props +const UilAppleAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAppleAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAppleAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAppleAlt; \ No newline at end of file diff --git a/icons/uil-apple.js b/icons/uil-apple.js index 338ef6c7..63dbbb2e 100644 --- a/icons/uil-apple.js +++ b/icons/uil-apple.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilApple = (props) => { - const { color, size, ...otherProps } = props +const UilApple = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilApple.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilApple.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilApple; \ No newline at end of file diff --git a/icons/uil-apps.js b/icons/uil-apps.js index 6347a6e6..45dd75c3 100644 --- a/icons/uil-apps.js +++ b/icons/uil-apps.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilApps = (props) => { - const { color, size, ...otherProps } = props +const UilApps = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilApps.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilApps.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilApps; \ No newline at end of file diff --git a/icons/uil-archive-alt.js b/icons/uil-archive-alt.js index 4db4fda7..d5bfaea2 100644 --- a/icons/uil-archive-alt.js +++ b/icons/uil-archive-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArchiveAlt = (props) => { - const { color, size, ...otherProps } = props +const UilArchiveAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArchiveAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArchiveAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArchiveAlt; \ No newline at end of file diff --git a/icons/uil-archive.js b/icons/uil-archive.js index d7802b2c..4258b7f5 100644 --- a/icons/uil-archive.js +++ b/icons/uil-archive.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArchive = (props) => { - const { color, size, ...otherProps } = props +const UilArchive = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArchive.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArchive.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArchive; \ No newline at end of file diff --git a/icons/uil-archway.js b/icons/uil-archway.js index b6651ab8..1fd439c0 100644 --- a/icons/uil-archway.js +++ b/icons/uil-archway.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArchway = (props) => { - const { color, size, ...otherProps } = props +const UilArchway = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArchway.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArchway.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArchway; \ No newline at end of file diff --git a/icons/uil-arrow-break.js b/icons/uil-arrow-break.js index 23947ef8..e9675b0e 100644 --- a/icons/uil-arrow-break.js +++ b/icons/uil-arrow-break.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowBreak = (props) => { - const { color, size, ...otherProps } = props +const UilArrowBreak = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowBreak.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowBreak.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowBreak; \ No newline at end of file diff --git a/icons/uil-arrow-circle-down.js b/icons/uil-arrow-circle-down.js index 4d66a09e..20eeeb48 100644 --- a/icons/uil-arrow-circle-down.js +++ b/icons/uil-arrow-circle-down.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowCircleDown = (props) => { - const { color, size, ...otherProps } = props +const UilArrowCircleDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowCircleDown.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowCircleDown.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowCircleDown; \ No newline at end of file diff --git a/icons/uil-arrow-circle-left.js b/icons/uil-arrow-circle-left.js index bd6309ec..36431919 100644 --- a/icons/uil-arrow-circle-left.js +++ b/icons/uil-arrow-circle-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowCircleLeft = (props) => { - const { color, size, ...otherProps } = props +const UilArrowCircleLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowCircleLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowCircleLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowCircleLeft; \ No newline at end of file diff --git a/icons/uil-arrow-circle-right.js b/icons/uil-arrow-circle-right.js index fa200fc6..d41816ad 100644 --- a/icons/uil-arrow-circle-right.js +++ b/icons/uil-arrow-circle-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowCircleRight = (props) => { - const { color, size, ...otherProps } = props +const UilArrowCircleRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowCircleRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowCircleRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowCircleRight; \ No newline at end of file diff --git a/icons/uil-arrow-circle-up.js b/icons/uil-arrow-circle-up.js index 60ab1f00..6bfc83f6 100644 --- a/icons/uil-arrow-circle-up.js +++ b/icons/uil-arrow-circle-up.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowCircleUp = (props) => { - const { color, size, ...otherProps } = props +const UilArrowCircleUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowCircleUp.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowCircleUp.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowCircleUp; \ No newline at end of file diff --git a/icons/uil-arrow-compress-h.js b/icons/uil-arrow-compress-h.js index 6954fbd9..9149a1da 100644 --- a/icons/uil-arrow-compress-h.js +++ b/icons/uil-arrow-compress-h.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowCompressH = (props) => { - const { color, size, ...otherProps } = props +const UilArrowCompressH = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowCompressH.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowCompressH.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowCompressH; \ No newline at end of file diff --git a/icons/uil-arrow-down-left.js b/icons/uil-arrow-down-left.js index 8435e227..c05b27b0 100644 --- a/icons/uil-arrow-down-left.js +++ b/icons/uil-arrow-down-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowDownLeft = (props) => { - const { color, size, ...otherProps } = props +const UilArrowDownLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowDownLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowDownLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowDownLeft; \ No newline at end of file diff --git a/icons/uil-arrow-down-right.js b/icons/uil-arrow-down-right.js index 2370291e..85860aea 100644 --- a/icons/uil-arrow-down-right.js +++ b/icons/uil-arrow-down-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowDownRight = (props) => { - const { color, size, ...otherProps } = props +const UilArrowDownRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowDownRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowDownRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowDownRight; \ No newline at end of file diff --git a/icons/uil-arrow-down.js b/icons/uil-arrow-down.js index 38f08558..7f530039 100644 --- a/icons/uil-arrow-down.js +++ b/icons/uil-arrow-down.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowDown = (props) => { - const { color, size, ...otherProps } = props +const UilArrowDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowDown.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowDown.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowDown; \ No newline at end of file diff --git a/icons/uil-arrow-from-right.js b/icons/uil-arrow-from-right.js index 5c797216..18ab26cc 100644 --- a/icons/uil-arrow-from-right.js +++ b/icons/uil-arrow-from-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowFromRight = (props) => { - const { color, size, ...otherProps } = props +const UilArrowFromRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowFromRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowFromRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowFromRight; \ No newline at end of file diff --git a/icons/uil-arrow-from-top.js b/icons/uil-arrow-from-top.js index e7c01cd7..4241f061 100644 --- a/icons/uil-arrow-from-top.js +++ b/icons/uil-arrow-from-top.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowFromTop = (props) => { - const { color, size, ...otherProps } = props +const UilArrowFromTop = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowFromTop.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowFromTop.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowFromTop; \ No newline at end of file diff --git a/icons/uil-arrow-growth.js b/icons/uil-arrow-growth.js index ac1e34b6..72fcd054 100644 --- a/icons/uil-arrow-growth.js +++ b/icons/uil-arrow-growth.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowGrowth = (props) => { - const { color, size, ...otherProps } = props +const UilArrowGrowth = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowGrowth.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowGrowth.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowGrowth; \ No newline at end of file diff --git a/icons/uil-arrow-left.js b/icons/uil-arrow-left.js index 0f7783e8..2b377a3a 100644 --- a/icons/uil-arrow-left.js +++ b/icons/uil-arrow-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowLeft = (props) => { - const { color, size, ...otherProps } = props +const UilArrowLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowLeft; \ No newline at end of file diff --git a/icons/uil-arrow-random.js b/icons/uil-arrow-random.js index b8fad662..920d600d 100644 --- a/icons/uil-arrow-random.js +++ b/icons/uil-arrow-random.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowRandom = (props) => { - const { color, size, ...otherProps } = props +const UilArrowRandom = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowRandom.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowRandom.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowRandom; \ No newline at end of file diff --git a/icons/uil-arrow-resize-diagonal.js b/icons/uil-arrow-resize-diagonal.js index f85a01b2..3a1d1fdd 100644 --- a/icons/uil-arrow-resize-diagonal.js +++ b/icons/uil-arrow-resize-diagonal.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowResizeDiagonal = (props) => { - const { color, size, ...otherProps } = props +const UilArrowResizeDiagonal = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowResizeDiagonal.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowResizeDiagonal.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowResizeDiagonal; \ No newline at end of file diff --git a/icons/uil-arrow-right.js b/icons/uil-arrow-right.js index 5ec917f7..52d04e84 100644 --- a/icons/uil-arrow-right.js +++ b/icons/uil-arrow-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowRight = (props) => { - const { color, size, ...otherProps } = props +const UilArrowRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowRight; \ No newline at end of file diff --git a/icons/uil-arrow-to-bottom.js b/icons/uil-arrow-to-bottom.js index 76a5b41f..c4e65368 100644 --- a/icons/uil-arrow-to-bottom.js +++ b/icons/uil-arrow-to-bottom.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowToBottom = (props) => { - const { color, size, ...otherProps } = props +const UilArrowToBottom = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowToBottom.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowToBottom.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowToBottom; \ No newline at end of file diff --git a/icons/uil-arrow-to-right.js b/icons/uil-arrow-to-right.js index 58b07bee..be82e55f 100644 --- a/icons/uil-arrow-to-right.js +++ b/icons/uil-arrow-to-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowToRight = (props) => { - const { color, size, ...otherProps } = props +const UilArrowToRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowToRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowToRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowToRight; \ No newline at end of file diff --git a/icons/uil-arrow-up-left.js b/icons/uil-arrow-up-left.js index b68c9e05..1eea0b83 100644 --- a/icons/uil-arrow-up-left.js +++ b/icons/uil-arrow-up-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowUpLeft = (props) => { - const { color, size, ...otherProps } = props +const UilArrowUpLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowUpLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowUpLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowUpLeft; \ No newline at end of file diff --git a/icons/uil-arrow-up-right.js b/icons/uil-arrow-up-right.js index f4292df8..029b5ef8 100644 --- a/icons/uil-arrow-up-right.js +++ b/icons/uil-arrow-up-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowUpRight = (props) => { - const { color, size, ...otherProps } = props +const UilArrowUpRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowUpRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowUpRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowUpRight; \ No newline at end of file diff --git a/icons/uil-arrow-up.js b/icons/uil-arrow-up.js index 2ebe13d2..f0220d90 100644 --- a/icons/uil-arrow-up.js +++ b/icons/uil-arrow-up.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowUp = (props) => { - const { color, size, ...otherProps } = props +const UilArrowUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowUp.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowUp.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowUp; \ No newline at end of file diff --git a/icons/uil-arrow.js b/icons/uil-arrow.js index 1b35b52d..c6589474 100644 --- a/icons/uil-arrow.js +++ b/icons/uil-arrow.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrow = (props) => { - const { color, size, ...otherProps } = props +const UilArrow = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrow.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrow.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrow; \ No newline at end of file diff --git a/icons/uil-arrows-h-alt.js b/icons/uil-arrows-h-alt.js index 3df3720c..6313b55a 100644 --- a/icons/uil-arrows-h-alt.js +++ b/icons/uil-arrows-h-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsHAlt = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsHAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsHAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsHAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsHAlt; \ No newline at end of file diff --git a/icons/uil-arrows-h.js b/icons/uil-arrows-h.js index debb7371..bc2b11da 100644 --- a/icons/uil-arrows-h.js +++ b/icons/uil-arrows-h.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsH = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsH = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsH.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsH.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsH; \ No newline at end of file diff --git a/icons/uil-arrows-left-down.js b/icons/uil-arrows-left-down.js index 33cbfa0d..d7202fd3 100644 --- a/icons/uil-arrows-left-down.js +++ b/icons/uil-arrows-left-down.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsLeftDown = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsLeftDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsLeftDown.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsLeftDown.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsLeftDown; \ No newline at end of file diff --git a/icons/uil-arrows-maximize.js b/icons/uil-arrows-maximize.js index ca39c620..00c28bf6 100644 --- a/icons/uil-arrows-maximize.js +++ b/icons/uil-arrows-maximize.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsMaximize = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsMaximize = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsMaximize.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsMaximize.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsMaximize; \ No newline at end of file diff --git a/icons/uil-arrows-merge.js b/icons/uil-arrows-merge.js index e0e5772b..4a23e06e 100644 --- a/icons/uil-arrows-merge.js +++ b/icons/uil-arrows-merge.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsMerge = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsMerge = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsMerge.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsMerge.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsMerge; \ No newline at end of file diff --git a/icons/uil-arrows-resize-h.js b/icons/uil-arrows-resize-h.js index 81993be9..f1418f18 100644 --- a/icons/uil-arrows-resize-h.js +++ b/icons/uil-arrows-resize-h.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsResizeH = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsResizeH = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsResizeH.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsResizeH.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsResizeH; \ No newline at end of file diff --git a/icons/uil-arrows-resize-v.js b/icons/uil-arrows-resize-v.js index 986b0501..aff948f2 100644 --- a/icons/uil-arrows-resize-v.js +++ b/icons/uil-arrows-resize-v.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsResizeV = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsResizeV = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsResizeV.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsResizeV.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsResizeV; \ No newline at end of file diff --git a/icons/uil-arrows-resize.js b/icons/uil-arrows-resize.js index 65dd6808..044a4fcc 100644 --- a/icons/uil-arrows-resize.js +++ b/icons/uil-arrows-resize.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsResize = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsResize = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsResize.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsResize.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsResize; \ No newline at end of file diff --git a/icons/uil-arrows-right-down.js b/icons/uil-arrows-right-down.js index c5e25c17..8d538ba0 100644 --- a/icons/uil-arrows-right-down.js +++ b/icons/uil-arrows-right-down.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsRightDown = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsRightDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsRightDown.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsRightDown.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsRightDown; \ No newline at end of file diff --git a/icons/uil-arrows-shrink-h.js b/icons/uil-arrows-shrink-h.js index d05ac622..f2d413bb 100644 --- a/icons/uil-arrows-shrink-h.js +++ b/icons/uil-arrows-shrink-h.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsShrinkH = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsShrinkH = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsShrinkH.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsShrinkH.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsShrinkH; \ No newline at end of file diff --git a/icons/uil-arrows-shrink-v.js b/icons/uil-arrows-shrink-v.js index 68329da8..f068e04d 100644 --- a/icons/uil-arrows-shrink-v.js +++ b/icons/uil-arrows-shrink-v.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsShrinkV = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsShrinkV = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsShrinkV.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsShrinkV.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsShrinkV; \ No newline at end of file diff --git a/icons/uil-arrows-up-right.js b/icons/uil-arrows-up-right.js index 9a49f435..1c475a9b 100644 --- a/icons/uil-arrows-up-right.js +++ b/icons/uil-arrows-up-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsUpRight = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsUpRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsUpRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsUpRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsUpRight; \ No newline at end of file diff --git a/icons/uil-arrows-v-alt.js b/icons/uil-arrows-v-alt.js index e93bb8b1..eccd605d 100644 --- a/icons/uil-arrows-v-alt.js +++ b/icons/uil-arrows-v-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsVAlt = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsVAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsVAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsVAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsVAlt; \ No newline at end of file diff --git a/icons/uil-arrows-v.js b/icons/uil-arrows-v.js index 814e8050..6a5f8833 100644 --- a/icons/uil-arrows-v.js +++ b/icons/uil-arrows-v.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilArrowsV = (props) => { - const { color, size, ...otherProps } = props +const UilArrowsV = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilArrowsV.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilArrowsV.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilArrowsV; \ No newline at end of file diff --git a/icons/uil-assistive-listening-systems.js b/icons/uil-assistive-listening-systems.js index 04ca1ce6..44f7d28e 100644 --- a/icons/uil-assistive-listening-systems.js +++ b/icons/uil-assistive-listening-systems.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAssistiveListeningSystems = (props) => { - const { color, size, ...otherProps } = props +const UilAssistiveListeningSystems = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAssistiveListeningSystems.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAssistiveListeningSystems.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAssistiveListeningSystems; \ No newline at end of file diff --git a/icons/uil-asterisk.js b/icons/uil-asterisk.js index 818b5761..b657223d 100644 --- a/icons/uil-asterisk.js +++ b/icons/uil-asterisk.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAsterisk = (props) => { - const { color, size, ...otherProps } = props +const UilAsterisk = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAsterisk.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAsterisk.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAsterisk; \ No newline at end of file diff --git a/icons/uil-at.js b/icons/uil-at.js index f06d726e..2ef23227 100644 --- a/icons/uil-at.js +++ b/icons/uil-at.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAt = (props) => { - const { color, size, ...otherProps } = props +const UilAt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAt; \ No newline at end of file diff --git a/icons/uil-atom.js b/icons/uil-atom.js index 33b9610c..cdfb0025 100644 --- a/icons/uil-atom.js +++ b/icons/uil-atom.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAtom = (props) => { - const { color, size, ...otherProps } = props +const UilAtom = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAtom.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAtom.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAtom; \ No newline at end of file diff --git a/icons/uil-auto-flash.js b/icons/uil-auto-flash.js index 8688b35f..2ac2116e 100644 --- a/icons/uil-auto-flash.js +++ b/icons/uil-auto-flash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAutoFlash = (props) => { - const { color, size, ...otherProps } = props +const UilAutoFlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAutoFlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAutoFlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAutoFlash; \ No newline at end of file diff --git a/icons/uil-award-alt.js b/icons/uil-award-alt.js index 04b6e045..14bcf0c6 100644 --- a/icons/uil-award-alt.js +++ b/icons/uil-award-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAwardAlt = (props) => { - const { color, size, ...otherProps } = props +const UilAwardAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAwardAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAwardAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAwardAlt; \ No newline at end of file diff --git a/icons/uil-award.js b/icons/uil-award.js index c42dcb97..a8a9e9c0 100644 --- a/icons/uil-award.js +++ b/icons/uil-award.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilAward = (props) => { - const { color, size, ...otherProps } = props +const UilAward = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilAward.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilAward.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilAward; \ No newline at end of file diff --git a/icons/uil-baby-carriage.js b/icons/uil-baby-carriage.js index 052aa39a..8b166333 100644 --- a/icons/uil-baby-carriage.js +++ b/icons/uil-baby-carriage.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBabyCarriage = (props) => { - const { color, size, ...otherProps } = props +const UilBabyCarriage = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBabyCarriage.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBabyCarriage.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBabyCarriage; \ No newline at end of file diff --git a/icons/uil-backpack.js b/icons/uil-backpack.js index 481b736d..88edd9fc 100644 --- a/icons/uil-backpack.js +++ b/icons/uil-backpack.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBackpack = (props) => { - const { color, size, ...otherProps } = props +const UilBackpack = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBackpack.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBackpack.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBackpack; \ No newline at end of file diff --git a/icons/uil-backspace.js b/icons/uil-backspace.js index 0958470a..5729115b 100644 --- a/icons/uil-backspace.js +++ b/icons/uil-backspace.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBackspace = (props) => { - const { color, size, ...otherProps } = props +const UilBackspace = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBackspace.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBackspace.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBackspace; \ No newline at end of file diff --git a/icons/uil-backward.js b/icons/uil-backward.js index c430e6b3..3e924a1b 100644 --- a/icons/uil-backward.js +++ b/icons/uil-backward.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBackward = (props) => { - const { color, size, ...otherProps } = props +const UilBackward = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBackward.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBackward.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBackward; \ No newline at end of file diff --git a/icons/uil-bag-alt.js b/icons/uil-bag-alt.js index a1917c05..454125a8 100644 --- a/icons/uil-bag-alt.js +++ b/icons/uil-bag-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBagAlt = (props) => { - const { color, size, ...otherProps } = props +const UilBagAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBagAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBagAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBagAlt; \ No newline at end of file diff --git a/icons/uil-bag-slash.js b/icons/uil-bag-slash.js index f4ed8e94..cc22a09f 100644 --- a/icons/uil-bag-slash.js +++ b/icons/uil-bag-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBagSlash = (props) => { - const { color, size, ...otherProps } = props +const UilBagSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBagSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBagSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBagSlash; \ No newline at end of file diff --git a/icons/uil-bag.js b/icons/uil-bag.js index 741bc2aa..d51e76a7 100644 --- a/icons/uil-bag.js +++ b/icons/uil-bag.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBag = (props) => { - const { color, size, ...otherProps } = props +const UilBag = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBag.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBag.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBag; \ No newline at end of file diff --git a/icons/uil-balance-scale.js b/icons/uil-balance-scale.js index b7b07904..95b6ccb4 100644 --- a/icons/uil-balance-scale.js +++ b/icons/uil-balance-scale.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBalanceScale = (props) => { - const { color, size, ...otherProps } = props +const UilBalanceScale = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBalanceScale.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBalanceScale.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBalanceScale; \ No newline at end of file diff --git a/icons/uil-ban.js b/icons/uil-ban.js index 6cf171ae..1982e609 100644 --- a/icons/uil-ban.js +++ b/icons/uil-ban.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBan = (props) => { - const { color, size, ...otherProps } = props +const UilBan = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBan.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBan.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBan; \ No newline at end of file diff --git a/icons/uil-band-aid.js b/icons/uil-band-aid.js index 9373dda8..440aff3d 100644 --- a/icons/uil-band-aid.js +++ b/icons/uil-band-aid.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBandAid = (props) => { - const { color, size, ...otherProps } = props +const UilBandAid = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBandAid.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBandAid.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBandAid; \ No newline at end of file diff --git a/icons/uil-bars.js b/icons/uil-bars.js index c26a99f0..ae71c3ac 100644 --- a/icons/uil-bars.js +++ b/icons/uil-bars.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBars = (props) => { - const { color, size, ...otherProps } = props +const UilBars = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBars.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBars.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBars; \ No newline at end of file diff --git a/icons/uil-baseball-ball.js b/icons/uil-baseball-ball.js index 558e94c6..78ee2c33 100644 --- a/icons/uil-baseball-ball.js +++ b/icons/uil-baseball-ball.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBaseballBall = (props) => { - const { color, size, ...otherProps } = props +const UilBaseballBall = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBaseballBall.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBaseballBall.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBaseballBall; \ No newline at end of file diff --git a/icons/uil-basketball-hoop.js b/icons/uil-basketball-hoop.js index 20d960a8..b8b8bff0 100644 --- a/icons/uil-basketball-hoop.js +++ b/icons/uil-basketball-hoop.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBasketballHoop = (props) => { - const { color, size, ...otherProps } = props +const UilBasketballHoop = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBasketballHoop.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBasketballHoop.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBasketballHoop; \ No newline at end of file diff --git a/icons/uil-basketball.js b/icons/uil-basketball.js index 78c84b5c..11b5cbc2 100644 --- a/icons/uil-basketball.js +++ b/icons/uil-basketball.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBasketball = (props) => { - const { color, size, ...otherProps } = props +const UilBasketball = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBasketball.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBasketball.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBasketball; \ No newline at end of file diff --git a/icons/uil-bath.js b/icons/uil-bath.js index f111224e..5ba0b845 100644 --- a/icons/uil-bath.js +++ b/icons/uil-bath.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBath = (props) => { - const { color, size, ...otherProps } = props +const UilBath = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBath.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBath.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBath; \ No newline at end of file diff --git a/icons/uil-battery-bolt.js b/icons/uil-battery-bolt.js index 205a86f4..dd0ac6ef 100644 --- a/icons/uil-battery-bolt.js +++ b/icons/uil-battery-bolt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBatteryBolt = (props) => { - const { color, size, ...otherProps } = props +const UilBatteryBolt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBatteryBolt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBatteryBolt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBatteryBolt; \ No newline at end of file diff --git a/icons/uil-battery-empty.js b/icons/uil-battery-empty.js index 63c7d4c4..e136df0e 100644 --- a/icons/uil-battery-empty.js +++ b/icons/uil-battery-empty.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBatteryEmpty = (props) => { - const { color, size, ...otherProps } = props +const UilBatteryEmpty = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBatteryEmpty.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBatteryEmpty.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBatteryEmpty; \ No newline at end of file diff --git a/icons/uil-bed-double.js b/icons/uil-bed-double.js index 5d14b799..fe30f296 100644 --- a/icons/uil-bed-double.js +++ b/icons/uil-bed-double.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBedDouble = (props) => { - const { color, size, ...otherProps } = props +const UilBedDouble = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBedDouble.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBedDouble.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBedDouble; \ No newline at end of file diff --git a/icons/uil-bed.js b/icons/uil-bed.js index 3f56fc37..7276d301 100644 --- a/icons/uil-bed.js +++ b/icons/uil-bed.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBed = (props) => { - const { color, size, ...otherProps } = props +const UilBed = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBed.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBed.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBed; \ No newline at end of file diff --git a/icons/uil-behance-alt.js b/icons/uil-behance-alt.js index 9c2a7be4..06f63a39 100644 --- a/icons/uil-behance-alt.js +++ b/icons/uil-behance-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBehanceAlt = (props) => { - const { color, size, ...otherProps } = props +const UilBehanceAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBehanceAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBehanceAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBehanceAlt; \ No newline at end of file diff --git a/icons/uil-behance.js b/icons/uil-behance.js index d0318106..42ebd9d6 100644 --- a/icons/uil-behance.js +++ b/icons/uil-behance.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBehance = (props) => { - const { color, size, ...otherProps } = props +const UilBehance = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBehance.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBehance.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBehance; \ No newline at end of file diff --git a/icons/uil-bell-school.js b/icons/uil-bell-school.js index 13e5f081..10b3499a 100644 --- a/icons/uil-bell-school.js +++ b/icons/uil-bell-school.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBellSchool = (props) => { - const { color, size, ...otherProps } = props +const UilBellSchool = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBellSchool.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBellSchool.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBellSchool; \ No newline at end of file diff --git a/icons/uil-bell-slash.js b/icons/uil-bell-slash.js index fe84b1d4..0be1c858 100644 --- a/icons/uil-bell-slash.js +++ b/icons/uil-bell-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBellSlash = (props) => { - const { color, size, ...otherProps } = props +const UilBellSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBellSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBellSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBellSlash; \ No newline at end of file diff --git a/icons/uil-bell.js b/icons/uil-bell.js index 8895d8ee..c1282938 100644 --- a/icons/uil-bell.js +++ b/icons/uil-bell.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBell = (props) => { - const { color, size, ...otherProps } = props +const UilBell = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBell.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBell.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBell; \ No newline at end of file diff --git a/icons/uil-bill.js b/icons/uil-bill.js index 159ae00b..ef3aa5fb 100644 --- a/icons/uil-bill.js +++ b/icons/uil-bill.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBill = (props) => { - const { color, size, ...otherProps } = props +const UilBill = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBill.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBill.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBill; \ No newline at end of file diff --git a/icons/uil-bing.js b/icons/uil-bing.js index c8352547..c45955ca 100644 --- a/icons/uil-bing.js +++ b/icons/uil-bing.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBing = (props) => { - const { color, size, ...otherProps } = props +const UilBing = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBing.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBing.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBing; \ No newline at end of file diff --git a/icons/uil-bitcoin-alt.js b/icons/uil-bitcoin-alt.js index 0ffc996a..1b5fd1df 100644 --- a/icons/uil-bitcoin-alt.js +++ b/icons/uil-bitcoin-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBitcoinAlt = (props) => { - const { color, size, ...otherProps } = props +const UilBitcoinAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBitcoinAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBitcoinAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBitcoinAlt; \ No newline at end of file diff --git a/icons/uil-bitcoin-circle.js b/icons/uil-bitcoin-circle.js index e9430be3..11f0c36d 100644 --- a/icons/uil-bitcoin-circle.js +++ b/icons/uil-bitcoin-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBitcoinCircle = (props) => { - const { color, size, ...otherProps } = props +const UilBitcoinCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBitcoinCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBitcoinCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBitcoinCircle; \ No newline at end of file diff --git a/icons/uil-bitcoin-sign.js b/icons/uil-bitcoin-sign.js index e6c481dc..0d55db4c 100644 --- a/icons/uil-bitcoin-sign.js +++ b/icons/uil-bitcoin-sign.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBitcoinSign = (props) => { - const { color, size, ...otherProps } = props +const UilBitcoinSign = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBitcoinSign.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBitcoinSign.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBitcoinSign; \ No newline at end of file diff --git a/icons/uil-bitcoin.js b/icons/uil-bitcoin.js index 99cbf673..462a0d0a 100644 --- a/icons/uil-bitcoin.js +++ b/icons/uil-bitcoin.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBitcoin = (props) => { - const { color, size, ...otherProps } = props +const UilBitcoin = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBitcoin.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBitcoin.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBitcoin; \ No newline at end of file diff --git a/icons/uil-black-berry.js b/icons/uil-black-berry.js index 44698a79..2b2fe612 100644 --- a/icons/uil-black-berry.js +++ b/icons/uil-black-berry.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBlackBerry = (props) => { - const { color, size, ...otherProps } = props +const UilBlackBerry = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBlackBerry.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBlackBerry.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBlackBerry; \ No newline at end of file diff --git a/icons/uil-blogger-alt.js b/icons/uil-blogger-alt.js index a8c002fc..89d69109 100644 --- a/icons/uil-blogger-alt.js +++ b/icons/uil-blogger-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBloggerAlt = (props) => { - const { color, size, ...otherProps } = props +const UilBloggerAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBloggerAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBloggerAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBloggerAlt; \ No newline at end of file diff --git a/icons/uil-blogger.js b/icons/uil-blogger.js index 765abd16..40083f40 100644 --- a/icons/uil-blogger.js +++ b/icons/uil-blogger.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBlogger = (props) => { - const { color, size, ...otherProps } = props +const UilBlogger = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBlogger.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBlogger.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBlogger; \ No newline at end of file diff --git a/icons/uil-bluetooth-b.js b/icons/uil-bluetooth-b.js index 5794db18..c7895c07 100644 --- a/icons/uil-bluetooth-b.js +++ b/icons/uil-bluetooth-b.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBluetoothB = (props) => { - const { color, size, ...otherProps } = props +const UilBluetoothB = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBluetoothB.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBluetoothB.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBluetoothB; \ No newline at end of file diff --git a/icons/uil-bold.js b/icons/uil-bold.js index 459dd460..78c054bc 100644 --- a/icons/uil-bold.js +++ b/icons/uil-bold.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBold = (props) => { - const { color, size, ...otherProps } = props +const UilBold = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBold.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBold.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBold; \ No newline at end of file diff --git a/icons/uil-bolt-alt.js b/icons/uil-bolt-alt.js index 48928f46..27699a8f 100644 --- a/icons/uil-bolt-alt.js +++ b/icons/uil-bolt-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBoltAlt = (props) => { - const { color, size, ...otherProps } = props +const UilBoltAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBoltAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBoltAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBoltAlt; \ No newline at end of file diff --git a/icons/uil-bolt-slash.js b/icons/uil-bolt-slash.js index 00a23dbb..ff407d2f 100644 --- a/icons/uil-bolt-slash.js +++ b/icons/uil-bolt-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBoltSlash = (props) => { - const { color, size, ...otherProps } = props +const UilBoltSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBoltSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBoltSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBoltSlash; \ No newline at end of file diff --git a/icons/uil-bolt.js b/icons/uil-bolt.js index b162cdd0..bc74b44c 100644 --- a/icons/uil-bolt.js +++ b/icons/uil-bolt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBolt = (props) => { - const { color, size, ...otherProps } = props +const UilBolt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBolt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBolt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBolt; \ No newline at end of file diff --git a/icons/uil-book-alt.js b/icons/uil-book-alt.js index e95cc83a..679192fb 100644 --- a/icons/uil-book-alt.js +++ b/icons/uil-book-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBookAlt = (props) => { - const { color, size, ...otherProps } = props +const UilBookAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBookAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBookAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBookAlt; \ No newline at end of file diff --git a/icons/uil-book-medical.js b/icons/uil-book-medical.js index 78d066d9..1f017cca 100644 --- a/icons/uil-book-medical.js +++ b/icons/uil-book-medical.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBookMedical = (props) => { - const { color, size, ...otherProps } = props +const UilBookMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBookMedical.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBookMedical.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBookMedical; \ No newline at end of file diff --git a/icons/uil-book-open.js b/icons/uil-book-open.js index 5b484d53..cc850ea6 100644 --- a/icons/uil-book-open.js +++ b/icons/uil-book-open.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBookOpen = (props) => { - const { color, size, ...otherProps } = props +const UilBookOpen = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBookOpen.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBookOpen.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBookOpen; \ No newline at end of file diff --git a/icons/uil-book-reader.js b/icons/uil-book-reader.js index c380d8b1..5a89e8d5 100644 --- a/icons/uil-book-reader.js +++ b/icons/uil-book-reader.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBookReader = (props) => { - const { color, size, ...otherProps } = props +const UilBookReader = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBookReader.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBookReader.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBookReader; \ No newline at end of file diff --git a/icons/uil-book.js b/icons/uil-book.js index 36ac2515..46a83c0d 100644 --- a/icons/uil-book.js +++ b/icons/uil-book.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBook = (props) => { - const { color, size, ...otherProps } = props +const UilBook = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBook.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBook.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBook; \ No newline at end of file diff --git a/icons/uil-bookmark-full.js b/icons/uil-bookmark-full.js index b7fe90b5..5a527948 100644 --- a/icons/uil-bookmark-full.js +++ b/icons/uil-bookmark-full.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBookmarkFull = (props) => { - const { color, size, ...otherProps } = props +const UilBookmarkFull = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBookmarkFull.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBookmarkFull.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBookmarkFull; \ No newline at end of file diff --git a/icons/uil-bookmark.js b/icons/uil-bookmark.js index 8011bef4..20d151f4 100644 --- a/icons/uil-bookmark.js +++ b/icons/uil-bookmark.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBookmark = (props) => { - const { color, size, ...otherProps } = props +const UilBookmark = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBookmark.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBookmark.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBookmark; \ No newline at end of file diff --git a/icons/uil-books.js b/icons/uil-books.js index f5dbf2d8..6563b1f1 100644 --- a/icons/uil-books.js +++ b/icons/uil-books.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBooks = (props) => { - const { color, size, ...otherProps } = props +const UilBooks = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBooks.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBooks.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBooks; \ No newline at end of file diff --git a/icons/uil-boombox.js b/icons/uil-boombox.js index 0791b9b4..f541c30d 100644 --- a/icons/uil-boombox.js +++ b/icons/uil-boombox.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBoombox = (props) => { - const { color, size, ...otherProps } = props +const UilBoombox = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBoombox.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBoombox.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBoombox; \ No newline at end of file diff --git a/icons/uil-border-alt.js b/icons/uil-border-alt.js index e4ff0311..5508a751 100644 --- a/icons/uil-border-alt.js +++ b/icons/uil-border-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBorderAlt = (props) => { - const { color, size, ...otherProps } = props +const UilBorderAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBorderAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBorderAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBorderAlt; \ No newline at end of file diff --git a/icons/uil-border-bottom.js b/icons/uil-border-bottom.js index ca48a8a2..a5fc2d21 100644 --- a/icons/uil-border-bottom.js +++ b/icons/uil-border-bottom.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBorderBottom = (props) => { - const { color, size, ...otherProps } = props +const UilBorderBottom = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBorderBottom.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBorderBottom.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBorderBottom; \ No newline at end of file diff --git a/icons/uil-border-clear.js b/icons/uil-border-clear.js index 91e21010..e132341e 100644 --- a/icons/uil-border-clear.js +++ b/icons/uil-border-clear.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBorderClear = (props) => { - const { color, size, ...otherProps } = props +const UilBorderClear = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBorderClear.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBorderClear.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBorderClear; \ No newline at end of file diff --git a/icons/uil-border-horizontal.js b/icons/uil-border-horizontal.js index 07072152..2fbf1dc6 100644 --- a/icons/uil-border-horizontal.js +++ b/icons/uil-border-horizontal.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBorderHorizontal = (props) => { - const { color, size, ...otherProps } = props +const UilBorderHorizontal = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBorderHorizontal.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBorderHorizontal.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBorderHorizontal; \ No newline at end of file diff --git a/icons/uil-border-inner.js b/icons/uil-border-inner.js index 361be0ab..bee06324 100644 --- a/icons/uil-border-inner.js +++ b/icons/uil-border-inner.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBorderInner = (props) => { - const { color, size, ...otherProps } = props +const UilBorderInner = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBorderInner.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBorderInner.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBorderInner; \ No newline at end of file diff --git a/icons/uil-border-left.js b/icons/uil-border-left.js index eca641a6..27db4e0b 100644 --- a/icons/uil-border-left.js +++ b/icons/uil-border-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBorderLeft = (props) => { - const { color, size, ...otherProps } = props +const UilBorderLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBorderLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBorderLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBorderLeft; \ No newline at end of file diff --git a/icons/uil-border-out.js b/icons/uil-border-out.js index 30344941..afe6ae30 100644 --- a/icons/uil-border-out.js +++ b/icons/uil-border-out.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBorderOut = (props) => { - const { color, size, ...otherProps } = props +const UilBorderOut = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBorderOut.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBorderOut.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBorderOut; \ No newline at end of file diff --git a/icons/uil-border-right.js b/icons/uil-border-right.js index 9c3174d2..50cf86ed 100644 --- a/icons/uil-border-right.js +++ b/icons/uil-border-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBorderRight = (props) => { - const { color, size, ...otherProps } = props +const UilBorderRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBorderRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBorderRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBorderRight; \ No newline at end of file diff --git a/icons/uil-border-top.js b/icons/uil-border-top.js index b0839371..ac561714 100644 --- a/icons/uil-border-top.js +++ b/icons/uil-border-top.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBorderTop = (props) => { - const { color, size, ...otherProps } = props +const UilBorderTop = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBorderTop.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBorderTop.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBorderTop; \ No newline at end of file diff --git a/icons/uil-border-vertical.js b/icons/uil-border-vertical.js index 1e4b2beb..ea6b2566 100644 --- a/icons/uil-border-vertical.js +++ b/icons/uil-border-vertical.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBorderVertical = (props) => { - const { color, size, ...otherProps } = props +const UilBorderVertical = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBorderVertical.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBorderVertical.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBorderVertical; \ No newline at end of file diff --git a/icons/uil-bowling-ball.js b/icons/uil-bowling-ball.js index 4d29e624..bc448418 100644 --- a/icons/uil-bowling-ball.js +++ b/icons/uil-bowling-ball.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBowlingBall = (props) => { - const { color, size, ...otherProps } = props +const UilBowlingBall = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBowlingBall.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBowlingBall.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBowlingBall; \ No newline at end of file diff --git a/icons/uil-box.js b/icons/uil-box.js index c029dfc1..492c19e6 100644 --- a/icons/uil-box.js +++ b/icons/uil-box.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBox = (props) => { - const { color, size, ...otherProps } = props +const UilBox = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBox.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBox.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBox; \ No newline at end of file diff --git a/icons/uil-brackets-curly.js b/icons/uil-brackets-curly.js index d7050230..0cdc8c4d 100644 --- a/icons/uil-brackets-curly.js +++ b/icons/uil-brackets-curly.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBracketsCurly = (props) => { - const { color, size, ...otherProps } = props +const UilBracketsCurly = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBracketsCurly.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBracketsCurly.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBracketsCurly; \ No newline at end of file diff --git a/icons/uil-brain.js b/icons/uil-brain.js index b9c566ba..279cba5b 100644 --- a/icons/uil-brain.js +++ b/icons/uil-brain.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBrain = (props) => { - const { color, size, ...otherProps } = props +const UilBrain = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBrain.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBrain.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBrain; \ No newline at end of file diff --git a/icons/uil-briefcase-alt.js b/icons/uil-briefcase-alt.js index 7c81902d..88a79a74 100644 --- a/icons/uil-briefcase-alt.js +++ b/icons/uil-briefcase-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBriefcaseAlt = (props) => { - const { color, size, ...otherProps } = props +const UilBriefcaseAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBriefcaseAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBriefcaseAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBriefcaseAlt; \ No newline at end of file diff --git a/icons/uil-briefcase.js b/icons/uil-briefcase.js index fd022905..407eacec 100644 --- a/icons/uil-briefcase.js +++ b/icons/uil-briefcase.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBriefcase = (props) => { - const { color, size, ...otherProps } = props +const UilBriefcase = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBriefcase.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBriefcase.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBriefcase; \ No newline at end of file diff --git a/icons/uil-bright.js b/icons/uil-bright.js index 247485d6..2cc8e132 100644 --- a/icons/uil-bright.js +++ b/icons/uil-bright.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBright = (props) => { - const { color, size, ...otherProps } = props +const UilBright = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBright.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBright.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBright; \ No newline at end of file diff --git a/icons/uil-brightness-empty.js b/icons/uil-brightness-empty.js index bd006bbf..c9f459b2 100644 --- a/icons/uil-brightness-empty.js +++ b/icons/uil-brightness-empty.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBrightnessEmpty = (props) => { - const { color, size, ...otherProps } = props +const UilBrightnessEmpty = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBrightnessEmpty.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBrightnessEmpty.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBrightnessEmpty; \ No newline at end of file diff --git a/icons/uil-brightness-half.js b/icons/uil-brightness-half.js index 5231cc3e..173eb734 100644 --- a/icons/uil-brightness-half.js +++ b/icons/uil-brightness-half.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBrightnessHalf = (props) => { - const { color, size, ...otherProps } = props +const UilBrightnessHalf = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBrightnessHalf.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBrightnessHalf.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBrightnessHalf; \ No newline at end of file diff --git a/icons/uil-brightness-low.js b/icons/uil-brightness-low.js index 1adcc941..beca5b23 100644 --- a/icons/uil-brightness-low.js +++ b/icons/uil-brightness-low.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBrightnessLow = (props) => { - const { color, size, ...otherProps } = props +const UilBrightnessLow = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBrightnessLow.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBrightnessLow.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBrightnessLow; \ No newline at end of file diff --git a/icons/uil-brightness-minus.js b/icons/uil-brightness-minus.js index 12dc3639..9cbbe980 100644 --- a/icons/uil-brightness-minus.js +++ b/icons/uil-brightness-minus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBrightnessMinus = (props) => { - const { color, size, ...otherProps } = props +const UilBrightnessMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBrightnessMinus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBrightnessMinus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBrightnessMinus; \ No newline at end of file diff --git a/icons/uil-brightness-plus.js b/icons/uil-brightness-plus.js index 9b0883d9..22179ac7 100644 --- a/icons/uil-brightness-plus.js +++ b/icons/uil-brightness-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBrightnessPlus = (props) => { - const { color, size, ...otherProps } = props +const UilBrightnessPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBrightnessPlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBrightnessPlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBrightnessPlus; \ No newline at end of file diff --git a/icons/uil-brightness.js b/icons/uil-brightness.js index 49ad4092..4171662b 100644 --- a/icons/uil-brightness.js +++ b/icons/uil-brightness.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBrightness = (props) => { - const { color, size, ...otherProps } = props +const UilBrightness = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBrightness.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBrightness.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBrightness; \ No newline at end of file diff --git a/icons/uil-bring-bottom.js b/icons/uil-bring-bottom.js index d9cd30ce..e3af1d9e 100644 --- a/icons/uil-bring-bottom.js +++ b/icons/uil-bring-bottom.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBringBottom = (props) => { - const { color, size, ...otherProps } = props +const UilBringBottom = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBringBottom.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBringBottom.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBringBottom; \ No newline at end of file diff --git a/icons/uil-bring-front.js b/icons/uil-bring-front.js index bbb1ff22..af36587e 100644 --- a/icons/uil-bring-front.js +++ b/icons/uil-bring-front.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBringFront = (props) => { - const { color, size, ...otherProps } = props +const UilBringFront = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBringFront.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBringFront.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBringFront; \ No newline at end of file diff --git a/icons/uil-browser.js b/icons/uil-browser.js index 9fd33964..f63561eb 100644 --- a/icons/uil-browser.js +++ b/icons/uil-browser.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBrowser = (props) => { - const { color, size, ...otherProps } = props +const UilBrowser = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBrowser.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBrowser.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBrowser; \ No newline at end of file diff --git a/icons/uil-brush-alt.js b/icons/uil-brush-alt.js index 8ab25885..3985486c 100644 --- a/icons/uil-brush-alt.js +++ b/icons/uil-brush-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBrushAlt = (props) => { - const { color, size, ...otherProps } = props +const UilBrushAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBrushAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBrushAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBrushAlt; \ No newline at end of file diff --git a/icons/uil-bug.js b/icons/uil-bug.js index 30f58783..194f0796 100644 --- a/icons/uil-bug.js +++ b/icons/uil-bug.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBug = (props) => { - const { color, size, ...otherProps } = props +const UilBug = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBug.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBug.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBug; \ No newline at end of file diff --git a/icons/uil-building.js b/icons/uil-building.js index dd15394e..78166d1b 100644 --- a/icons/uil-building.js +++ b/icons/uil-building.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBuilding = (props) => { - const { color, size, ...otherProps } = props +const UilBuilding = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBuilding.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBuilding.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBuilding; \ No newline at end of file diff --git a/icons/uil-bullseye.js b/icons/uil-bullseye.js index e8fbab0b..bfc84dfb 100644 --- a/icons/uil-bullseye.js +++ b/icons/uil-bullseye.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBullseye = (props) => { - const { color, size, ...otherProps } = props +const UilBullseye = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBullseye.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBullseye.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBullseye; \ No newline at end of file diff --git a/icons/uil-bus-alt.js b/icons/uil-bus-alt.js index bee72e55..3f049fe7 100644 --- a/icons/uil-bus-alt.js +++ b/icons/uil-bus-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBusAlt = (props) => { - const { color, size, ...otherProps } = props +const UilBusAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBusAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBusAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBusAlt; \ No newline at end of file diff --git a/icons/uil-bus-school.js b/icons/uil-bus-school.js index f08f7e9c..2c8a17eb 100644 --- a/icons/uil-bus-school.js +++ b/icons/uil-bus-school.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBusSchool = (props) => { - const { color, size, ...otherProps } = props +const UilBusSchool = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBusSchool.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBusSchool.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBusSchool; \ No newline at end of file diff --git a/icons/uil-bus.js b/icons/uil-bus.js index 34eb8311..e892a2ff 100644 --- a/icons/uil-bus.js +++ b/icons/uil-bus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilBus = (props) => { - const { color, size, ...otherProps } = props +const UilBus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilBus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilBus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilBus; \ No newline at end of file diff --git a/icons/uil-calculator-alt.js b/icons/uil-calculator-alt.js index 59125fda..e5c70962 100644 --- a/icons/uil-calculator-alt.js +++ b/icons/uil-calculator-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCalculatorAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCalculatorAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCalculatorAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCalculatorAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCalculatorAlt; \ No newline at end of file diff --git a/icons/uil-calculator.js b/icons/uil-calculator.js index 0eddfe7e..f84d5b45 100644 --- a/icons/uil-calculator.js +++ b/icons/uil-calculator.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCalculator = (props) => { - const { color, size, ...otherProps } = props +const UilCalculator = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCalculator.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCalculator.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCalculator; \ No newline at end of file diff --git a/icons/uil-calendar-alt.js b/icons/uil-calendar-alt.js index 92410efa..40f696be 100644 --- a/icons/uil-calendar-alt.js +++ b/icons/uil-calendar-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCalendarAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCalendarAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCalendarAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCalendarAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCalendarAlt; \ No newline at end of file diff --git a/icons/uil-calendar-slash.js b/icons/uil-calendar-slash.js index 53f5b9c7..56b07aaf 100644 --- a/icons/uil-calendar-slash.js +++ b/icons/uil-calendar-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCalendarSlash = (props) => { - const { color, size, ...otherProps } = props +const UilCalendarSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCalendarSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCalendarSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCalendarSlash; \ No newline at end of file diff --git a/icons/uil-calender.js b/icons/uil-calender.js index b3a08e12..f6ac0b8c 100644 --- a/icons/uil-calender.js +++ b/icons/uil-calender.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCalender = (props) => { - const { color, size, ...otherProps } = props +const UilCalender = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCalender.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCalender.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCalender; \ No newline at end of file diff --git a/icons/uil-calling.js b/icons/uil-calling.js index de04d2dc..65157dc1 100644 --- a/icons/uil-calling.js +++ b/icons/uil-calling.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCalling = (props) => { - const { color, size, ...otherProps } = props +const UilCalling = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCalling.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCalling.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCalling; \ No newline at end of file diff --git a/icons/uil-camera-change.js b/icons/uil-camera-change.js index 398ae95f..a68509c3 100644 --- a/icons/uil-camera-change.js +++ b/icons/uil-camera-change.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCameraChange = (props) => { - const { color, size, ...otherProps } = props +const UilCameraChange = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCameraChange.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCameraChange.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCameraChange; \ No newline at end of file diff --git a/icons/uil-camera-plus.js b/icons/uil-camera-plus.js index 4192b772..7b0bdd5a 100644 --- a/icons/uil-camera-plus.js +++ b/icons/uil-camera-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCameraPlus = (props) => { - const { color, size, ...otherProps } = props +const UilCameraPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCameraPlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCameraPlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCameraPlus; \ No newline at end of file diff --git a/icons/uil-camera-slash.js b/icons/uil-camera-slash.js index abbf22b8..541f4088 100644 --- a/icons/uil-camera-slash.js +++ b/icons/uil-camera-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCameraSlash = (props) => { - const { color, size, ...otherProps } = props +const UilCameraSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCameraSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCameraSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCameraSlash; \ No newline at end of file diff --git a/icons/uil-camera.js b/icons/uil-camera.js index 5b2a85a1..5fd5cb1e 100644 --- a/icons/uil-camera.js +++ b/icons/uil-camera.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCamera = (props) => { - const { color, size, ...otherProps } = props +const UilCamera = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCamera.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCamera.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCamera; \ No newline at end of file diff --git a/icons/uil-cancel.js b/icons/uil-cancel.js index a2568b57..1875018b 100644 --- a/icons/uil-cancel.js +++ b/icons/uil-cancel.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCancel = (props) => { - const { color, size, ...otherProps } = props +const UilCancel = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCancel.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCancel.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCancel; \ No newline at end of file diff --git a/icons/uil-capsule.js b/icons/uil-capsule.js index 33de819f..ff22bd82 100644 --- a/icons/uil-capsule.js +++ b/icons/uil-capsule.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCapsule = (props) => { - const { color, size, ...otherProps } = props +const UilCapsule = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCapsule.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCapsule.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCapsule; \ No newline at end of file diff --git a/icons/uil-capture.js b/icons/uil-capture.js index 494793f1..a348fcf6 100644 --- a/icons/uil-capture.js +++ b/icons/uil-capture.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCapture = (props) => { - const { color, size, ...otherProps } = props +const UilCapture = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCapture.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCapture.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCapture; \ No newline at end of file diff --git a/icons/uil-car-sideview.js b/icons/uil-car-sideview.js index 44804d6d..5a134abb 100644 --- a/icons/uil-car-sideview.js +++ b/icons/uil-car-sideview.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCarSideview = (props) => { - const { color, size, ...otherProps } = props +const UilCarSideview = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCarSideview.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCarSideview.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCarSideview; \ No newline at end of file diff --git a/icons/uil-car-slash.js b/icons/uil-car-slash.js index ec764d5c..a5430724 100644 --- a/icons/uil-car-slash.js +++ b/icons/uil-car-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCarSlash = (props) => { - const { color, size, ...otherProps } = props +const UilCarSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCarSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCarSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCarSlash; \ No newline at end of file diff --git a/icons/uil-car-wash.js b/icons/uil-car-wash.js index 0dcd28a7..3cee78e6 100644 --- a/icons/uil-car-wash.js +++ b/icons/uil-car-wash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCarWash = (props) => { - const { color, size, ...otherProps } = props +const UilCarWash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCarWash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCarWash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCarWash; \ No newline at end of file diff --git a/icons/uil-car.js b/icons/uil-car.js index 7942d0ea..e1aa7662 100644 --- a/icons/uil-car.js +++ b/icons/uil-car.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCar = (props) => { - const { color, size, ...otherProps } = props +const UilCar = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCar.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCar.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCar; \ No newline at end of file diff --git a/icons/uil-card-atm.js b/icons/uil-card-atm.js index cbf215ee..cb8b946e 100644 --- a/icons/uil-card-atm.js +++ b/icons/uil-card-atm.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCardAtm = (props) => { - const { color, size, ...otherProps } = props +const UilCardAtm = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCardAtm.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCardAtm.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCardAtm; \ No newline at end of file diff --git a/icons/uil-caret-right.js b/icons/uil-caret-right.js index 40b0b6b1..2abaf89c 100644 --- a/icons/uil-caret-right.js +++ b/icons/uil-caret-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCaretRight = (props) => { - const { color, size, ...otherProps } = props +const UilCaretRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCaretRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCaretRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCaretRight; \ No newline at end of file diff --git a/icons/uil-cell.js b/icons/uil-cell.js index c6fe8c71..9268ffa7 100644 --- a/icons/uil-cell.js +++ b/icons/uil-cell.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCell = (props) => { - const { color, size, ...otherProps } = props +const UilCell = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCell.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCell.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCell; \ No newline at end of file diff --git a/icons/uil-celsius.js b/icons/uil-celsius.js index f394009f..8df227a3 100644 --- a/icons/uil-celsius.js +++ b/icons/uil-celsius.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCelsius = (props) => { - const { color, size, ...otherProps } = props +const UilCelsius = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCelsius.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCelsius.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCelsius; \ No newline at end of file diff --git a/icons/uil-channel-add.js b/icons/uil-channel-add.js index 5ff85f6e..058298c4 100644 --- a/icons/uil-channel-add.js +++ b/icons/uil-channel-add.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChannelAdd = (props) => { - const { color, size, ...otherProps } = props +const UilChannelAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChannelAdd.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChannelAdd.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChannelAdd; \ No newline at end of file diff --git a/icons/uil-channel.js b/icons/uil-channel.js index 9eb9422a..710e4f2c 100644 --- a/icons/uil-channel.js +++ b/icons/uil-channel.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChannel = (props) => { - const { color, size, ...otherProps } = props +const UilChannel = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChannel.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChannel.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChannel; \ No newline at end of file diff --git a/icons/uil-chart-bar-alt.js b/icons/uil-chart-bar-alt.js index 239842ba..93ca4b07 100644 --- a/icons/uil-chart-bar-alt.js +++ b/icons/uil-chart-bar-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChartBarAlt = (props) => { - const { color, size, ...otherProps } = props +const UilChartBarAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChartBarAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChartBarAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChartBarAlt; \ No newline at end of file diff --git a/icons/uil-chart-bar.js b/icons/uil-chart-bar.js index b8c8999a..137920bc 100644 --- a/icons/uil-chart-bar.js +++ b/icons/uil-chart-bar.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChartBar = (props) => { - const { color, size, ...otherProps } = props +const UilChartBar = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChartBar.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChartBar.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChartBar; \ No newline at end of file diff --git a/icons/uil-chart-down.js b/icons/uil-chart-down.js index 9ef6a667..d8a7669b 100644 --- a/icons/uil-chart-down.js +++ b/icons/uil-chart-down.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChartDown = (props) => { - const { color, size, ...otherProps } = props +const UilChartDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChartDown.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChartDown.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChartDown; \ No newline at end of file diff --git a/icons/uil-chart-growth-alt.js b/icons/uil-chart-growth-alt.js index 3d8f3332..dda5d04f 100644 --- a/icons/uil-chart-growth-alt.js +++ b/icons/uil-chart-growth-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChartGrowthAlt = (props) => { - const { color, size, ...otherProps } = props +const UilChartGrowthAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChartGrowthAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChartGrowthAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChartGrowthAlt; \ No newline at end of file diff --git a/icons/uil-chart-growth.js b/icons/uil-chart-growth.js index 9e81a191..3557d60e 100644 --- a/icons/uil-chart-growth.js +++ b/icons/uil-chart-growth.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChartGrowth = (props) => { - const { color, size, ...otherProps } = props +const UilChartGrowth = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChartGrowth.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChartGrowth.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChartGrowth; \ No newline at end of file diff --git a/icons/uil-chart-line.js b/icons/uil-chart-line.js index 7fabe55c..03eab95c 100644 --- a/icons/uil-chart-line.js +++ b/icons/uil-chart-line.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChartLine = (props) => { - const { color, size, ...otherProps } = props +const UilChartLine = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChartLine.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChartLine.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChartLine; \ No newline at end of file diff --git a/icons/uil-chart-pie-alt.js b/icons/uil-chart-pie-alt.js index 7d205118..7a0f1441 100644 --- a/icons/uil-chart-pie-alt.js +++ b/icons/uil-chart-pie-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChartPieAlt = (props) => { - const { color, size, ...otherProps } = props +const UilChartPieAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChartPieAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChartPieAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChartPieAlt; \ No newline at end of file diff --git a/icons/uil-chart-pie.js b/icons/uil-chart-pie.js index f09b962c..7bb313ef 100644 --- a/icons/uil-chart-pie.js +++ b/icons/uil-chart-pie.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChartPie = (props) => { - const { color, size, ...otherProps } = props +const UilChartPie = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChartPie.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChartPie.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChartPie; \ No newline at end of file diff --git a/icons/uil-chart.js b/icons/uil-chart.js index 3a27e928..466331f8 100644 --- a/icons/uil-chart.js +++ b/icons/uil-chart.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChart = (props) => { - const { color, size, ...otherProps } = props +const UilChart = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChart.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChart.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChart; \ No newline at end of file diff --git a/icons/uil-chat-bubble-user.js b/icons/uil-chat-bubble-user.js index a2c23d1b..af7eb352 100644 --- a/icons/uil-chat-bubble-user.js +++ b/icons/uil-chat-bubble-user.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChatBubbleUser = (props) => { - const { color, size, ...otherProps } = props +const UilChatBubbleUser = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChatBubbleUser.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChatBubbleUser.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChatBubbleUser; \ No newline at end of file diff --git a/icons/uil-chat-info.js b/icons/uil-chat-info.js index 5ccedde1..52fa544e 100644 --- a/icons/uil-chat-info.js +++ b/icons/uil-chat-info.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChatInfo = (props) => { - const { color, size, ...otherProps } = props +const UilChatInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChatInfo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChatInfo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChatInfo; \ No newline at end of file diff --git a/icons/uil-chat.js b/icons/uil-chat.js index 1de776f5..5f1defe9 100644 --- a/icons/uil-chat.js +++ b/icons/uil-chat.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilChat = (props) => { - const { color, size, ...otherProps } = props +const UilChat = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilChat.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilChat.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilChat; \ No newline at end of file diff --git a/icons/uil-check-circle.js b/icons/uil-check-circle.js index 97f298d7..ba5b69b1 100644 --- a/icons/uil-check-circle.js +++ b/icons/uil-check-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCheckCircle = (props) => { - const { color, size, ...otherProps } = props +const UilCheckCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCheckCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCheckCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCheckCircle; \ No newline at end of file diff --git a/icons/uil-check-square.js b/icons/uil-check-square.js index d8f1ad44..cd3e0a55 100644 --- a/icons/uil-check-square.js +++ b/icons/uil-check-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCheckSquare = (props) => { - const { color, size, ...otherProps } = props +const UilCheckSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCheckSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCheckSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCheckSquare; \ No newline at end of file diff --git a/icons/uil-check.js b/icons/uil-check.js index 9b3f6fef..f95a9a2f 100644 --- a/icons/uil-check.js +++ b/icons/uil-check.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCheck = (props) => { - const { color, size, ...otherProps } = props +const UilCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCheck.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCheck.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCheck; \ No newline at end of file diff --git a/icons/uil-circle-layer.js b/icons/uil-circle-layer.js index f9e96e6a..ea563880 100644 --- a/icons/uil-circle-layer.js +++ b/icons/uil-circle-layer.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCircleLayer = (props) => { - const { color, size, ...otherProps } = props +const UilCircleLayer = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCircleLayer.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCircleLayer.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCircleLayer; \ No newline at end of file diff --git a/icons/uil-circle.js b/icons/uil-circle.js index 591f7417..27812071 100644 --- a/icons/uil-circle.js +++ b/icons/uil-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCircle = (props) => { - const { color, size, ...otherProps } = props +const UilCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCircle; \ No newline at end of file diff --git a/icons/uil-circuit.js b/icons/uil-circuit.js index d97bd110..9329d483 100644 --- a/icons/uil-circuit.js +++ b/icons/uil-circuit.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCircuit = (props) => { - const { color, size, ...otherProps } = props +const UilCircuit = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCircuit.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCircuit.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCircuit; \ No newline at end of file diff --git a/icons/uil-clapper-board.js b/icons/uil-clapper-board.js index cbc407b5..8dccba23 100644 --- a/icons/uil-clapper-board.js +++ b/icons/uil-clapper-board.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClapperBoard = (props) => { - const { color, size, ...otherProps } = props +const UilClapperBoard = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClapperBoard.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClapperBoard.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClapperBoard; \ No newline at end of file diff --git a/icons/uil-clinic-medical.js b/icons/uil-clinic-medical.js index e9fca84a..1805b91a 100644 --- a/icons/uil-clinic-medical.js +++ b/icons/uil-clinic-medical.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClinicMedical = (props) => { - const { color, size, ...otherProps } = props +const UilClinicMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClinicMedical.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClinicMedical.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClinicMedical; \ No newline at end of file diff --git a/icons/uil-clipboard-alt.js b/icons/uil-clipboard-alt.js index aea89586..e5ea667d 100644 --- a/icons/uil-clipboard-alt.js +++ b/icons/uil-clipboard-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClipboardAlt = (props) => { - const { color, size, ...otherProps } = props +const UilClipboardAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClipboardAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClipboardAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClipboardAlt; \ No newline at end of file diff --git a/icons/uil-clipboard-blank.js b/icons/uil-clipboard-blank.js index 821289f0..17ff2af1 100644 --- a/icons/uil-clipboard-blank.js +++ b/icons/uil-clipboard-blank.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClipboardBlank = (props) => { - const { color, size, ...otherProps } = props +const UilClipboardBlank = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClipboardBlank.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClipboardBlank.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClipboardBlank; \ No newline at end of file diff --git a/icons/uil-clipboard-notes.js b/icons/uil-clipboard-notes.js index d08a2eab..2f81420d 100644 --- a/icons/uil-clipboard-notes.js +++ b/icons/uil-clipboard-notes.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClipboardNotes = (props) => { - const { color, size, ...otherProps } = props +const UilClipboardNotes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClipboardNotes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClipboardNotes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClipboardNotes; \ No newline at end of file diff --git a/icons/uil-clipboard.js b/icons/uil-clipboard.js index 0c8f6fa7..c7baaf54 100644 --- a/icons/uil-clipboard.js +++ b/icons/uil-clipboard.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClipboard = (props) => { - const { color, size, ...otherProps } = props +const UilClipboard = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClipboard.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClipboard.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClipboard; \ No newline at end of file diff --git a/icons/uil-clock-eight.js b/icons/uil-clock-eight.js index 444fce97..9a12041c 100644 --- a/icons/uil-clock-eight.js +++ b/icons/uil-clock-eight.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClockEight = (props) => { - const { color, size, ...otherProps } = props +const UilClockEight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClockEight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClockEight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClockEight; \ No newline at end of file diff --git a/icons/uil-clock-five.js b/icons/uil-clock-five.js index 6c9907ca..40fe7890 100644 --- a/icons/uil-clock-five.js +++ b/icons/uil-clock-five.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClockFive = (props) => { - const { color, size, ...otherProps } = props +const UilClockFive = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClockFive.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClockFive.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClockFive; \ No newline at end of file diff --git a/icons/uil-clock-nine.js b/icons/uil-clock-nine.js index 2dbc9a7d..a7b95461 100644 --- a/icons/uil-clock-nine.js +++ b/icons/uil-clock-nine.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClockNine = (props) => { - const { color, size, ...otherProps } = props +const UilClockNine = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClockNine.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClockNine.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClockNine; \ No newline at end of file diff --git a/icons/uil-clock-seven.js b/icons/uil-clock-seven.js index 77627c28..17ca4d50 100644 --- a/icons/uil-clock-seven.js +++ b/icons/uil-clock-seven.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClockSeven = (props) => { - const { color, size, ...otherProps } = props +const UilClockSeven = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClockSeven.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClockSeven.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClockSeven; \ No newline at end of file diff --git a/icons/uil-clock-ten.js b/icons/uil-clock-ten.js index 8f82d6ff..144837db 100644 --- a/icons/uil-clock-ten.js +++ b/icons/uil-clock-ten.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClockTen = (props) => { - const { color, size, ...otherProps } = props +const UilClockTen = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClockTen.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClockTen.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClockTen; \ No newline at end of file diff --git a/icons/uil-clock-three.js b/icons/uil-clock-three.js index 2a49be06..2328307c 100644 --- a/icons/uil-clock-three.js +++ b/icons/uil-clock-three.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClockThree = (props) => { - const { color, size, ...otherProps } = props +const UilClockThree = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClockThree.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClockThree.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClockThree; \ No newline at end of file diff --git a/icons/uil-clock-two.js b/icons/uil-clock-two.js index 4605b551..ab82ea7a 100644 --- a/icons/uil-clock-two.js +++ b/icons/uil-clock-two.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClockTwo = (props) => { - const { color, size, ...otherProps } = props +const UilClockTwo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClockTwo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClockTwo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClockTwo; \ No newline at end of file diff --git a/icons/uil-clock.js b/icons/uil-clock.js index a6f4248d..a13a55eb 100644 --- a/icons/uil-clock.js +++ b/icons/uil-clock.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClock = (props) => { - const { color, size, ...otherProps } = props +const UilClock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClock; \ No newline at end of file diff --git a/icons/uil-closed-captioning-slash.js b/icons/uil-closed-captioning-slash.js index 968ccaa0..bc216b86 100644 --- a/icons/uil-closed-captioning-slash.js +++ b/icons/uil-closed-captioning-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClosedCaptioningSlash = (props) => { - const { color, size, ...otherProps } = props +const UilClosedCaptioningSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClosedCaptioningSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClosedCaptioningSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClosedCaptioningSlash; \ No newline at end of file diff --git a/icons/uil-closed-captioning.js b/icons/uil-closed-captioning.js index d7b5fae1..85343b22 100644 --- a/icons/uil-closed-captioning.js +++ b/icons/uil-closed-captioning.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClosedCaptioning = (props) => { - const { color, size, ...otherProps } = props +const UilClosedCaptioning = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClosedCaptioning.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClosedCaptioning.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClosedCaptioning; \ No newline at end of file diff --git a/icons/uil-cloud-block.js b/icons/uil-cloud-block.js index e0651cc3..46b98680 100644 --- a/icons/uil-cloud-block.js +++ b/icons/uil-cloud-block.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudBlock = (props) => { - const { color, size, ...otherProps } = props +const UilCloudBlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudBlock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudBlock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudBlock; \ No newline at end of file diff --git a/icons/uil-cloud-bookmark.js b/icons/uil-cloud-bookmark.js index dc7aa2ee..8bdd980e 100644 --- a/icons/uil-cloud-bookmark.js +++ b/icons/uil-cloud-bookmark.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudBookmark = (props) => { - const { color, size, ...otherProps } = props +const UilCloudBookmark = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudBookmark.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudBookmark.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudBookmark; \ No newline at end of file diff --git a/icons/uil-cloud-check.js b/icons/uil-cloud-check.js index 9b3c7b52..895ab612 100644 --- a/icons/uil-cloud-check.js +++ b/icons/uil-cloud-check.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudCheck = (props) => { - const { color, size, ...otherProps } = props +const UilCloudCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudCheck.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudCheck.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudCheck; \ No newline at end of file diff --git a/icons/uil-cloud-computing.js b/icons/uil-cloud-computing.js index e8107880..df00e193 100644 --- a/icons/uil-cloud-computing.js +++ b/icons/uil-cloud-computing.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudComputing = (props) => { - const { color, size, ...otherProps } = props +const UilCloudComputing = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudComputing.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudComputing.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudComputing; \ No newline at end of file diff --git a/icons/uil-cloud-data-connection.js b/icons/uil-cloud-data-connection.js index dd770915..620dde90 100644 --- a/icons/uil-cloud-data-connection.js +++ b/icons/uil-cloud-data-connection.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudDataConnection = (props) => { - const { color, size, ...otherProps } = props +const UilCloudDataConnection = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudDataConnection.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudDataConnection.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudDataConnection; \ No newline at end of file diff --git a/icons/uil-cloud-database-tree.js b/icons/uil-cloud-database-tree.js index f324628d..f147007e 100644 --- a/icons/uil-cloud-database-tree.js +++ b/icons/uil-cloud-database-tree.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudDatabaseTree = (props) => { - const { color, size, ...otherProps } = props +const UilCloudDatabaseTree = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudDatabaseTree.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudDatabaseTree.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudDatabaseTree; \ No newline at end of file diff --git a/icons/uil-cloud-download.js b/icons/uil-cloud-download.js index 24ade050..71ca7242 100644 --- a/icons/uil-cloud-download.js +++ b/icons/uil-cloud-download.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudDownload = (props) => { - const { color, size, ...otherProps } = props +const UilCloudDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudDownload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudDownload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudDownload; \ No newline at end of file diff --git a/icons/uil-cloud-drizzle.js b/icons/uil-cloud-drizzle.js index 279aaff4..ce0ca580 100644 --- a/icons/uil-cloud-drizzle.js +++ b/icons/uil-cloud-drizzle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudDrizzle = (props) => { - const { color, size, ...otherProps } = props +const UilCloudDrizzle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudDrizzle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudDrizzle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudDrizzle; \ No newline at end of file diff --git a/icons/uil-cloud-exclamation.js b/icons/uil-cloud-exclamation.js index 43701400..2b7c4cf0 100644 --- a/icons/uil-cloud-exclamation.js +++ b/icons/uil-cloud-exclamation.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudExclamation = (props) => { - const { color, size, ...otherProps } = props +const UilCloudExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudExclamation.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudExclamation.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudExclamation; \ No newline at end of file diff --git a/icons/uil-cloud-hail.js b/icons/uil-cloud-hail.js index 1726d51a..6eb92fea 100644 --- a/icons/uil-cloud-hail.js +++ b/icons/uil-cloud-hail.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudHail = (props) => { - const { color, size, ...otherProps } = props +const UilCloudHail = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudHail.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudHail.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudHail; \ No newline at end of file diff --git a/icons/uil-cloud-heart.js b/icons/uil-cloud-heart.js index 8369947d..eaa867fa 100644 --- a/icons/uil-cloud-heart.js +++ b/icons/uil-cloud-heart.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudHeart = (props) => { - const { color, size, ...otherProps } = props +const UilCloudHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudHeart.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudHeart.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudHeart; \ No newline at end of file diff --git a/icons/uil-cloud-info.js b/icons/uil-cloud-info.js index 527baa0f..f2759884 100644 --- a/icons/uil-cloud-info.js +++ b/icons/uil-cloud-info.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudInfo = (props) => { - const { color, size, ...otherProps } = props +const UilCloudInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudInfo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudInfo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudInfo; \ No newline at end of file diff --git a/icons/uil-cloud-lock.js b/icons/uil-cloud-lock.js index 1412a6ec..4552cd72 100644 --- a/icons/uil-cloud-lock.js +++ b/icons/uil-cloud-lock.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudLock = (props) => { - const { color, size, ...otherProps } = props +const UilCloudLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudLock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudLock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudLock; \ No newline at end of file diff --git a/icons/uil-cloud-meatball.js b/icons/uil-cloud-meatball.js index 8e22ff4c..3f703aa7 100644 --- a/icons/uil-cloud-meatball.js +++ b/icons/uil-cloud-meatball.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudMeatball = (props) => { - const { color, size, ...otherProps } = props +const UilCloudMeatball = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudMeatball.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudMeatball.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudMeatball; \ No newline at end of file diff --git a/icons/uil-cloud-moon-hail.js b/icons/uil-cloud-moon-hail.js index f69ef144..5d03b08f 100644 --- a/icons/uil-cloud-moon-hail.js +++ b/icons/uil-cloud-moon-hail.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudMoonHail = (props) => { - const { color, size, ...otherProps } = props +const UilCloudMoonHail = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudMoonHail.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudMoonHail.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudMoonHail; \ No newline at end of file diff --git a/icons/uil-cloud-moon-meatball.js b/icons/uil-cloud-moon-meatball.js index e08d4ef6..a7f9d788 100644 --- a/icons/uil-cloud-moon-meatball.js +++ b/icons/uil-cloud-moon-meatball.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudMoonMeatball = (props) => { - const { color, size, ...otherProps } = props +const UilCloudMoonMeatball = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudMoonMeatball.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudMoonMeatball.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudMoonMeatball; \ No newline at end of file diff --git a/icons/uil-cloud-moon-rain.js b/icons/uil-cloud-moon-rain.js index e8aca528..bf6bb5ad 100644 --- a/icons/uil-cloud-moon-rain.js +++ b/icons/uil-cloud-moon-rain.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudMoonRain = (props) => { - const { color, size, ...otherProps } = props +const UilCloudMoonRain = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudMoonRain.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudMoonRain.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudMoonRain; \ No newline at end of file diff --git a/icons/uil-cloud-moon-showers.js b/icons/uil-cloud-moon-showers.js index 190a03d6..cffe5b9a 100644 --- a/icons/uil-cloud-moon-showers.js +++ b/icons/uil-cloud-moon-showers.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudMoonShowers = (props) => { - const { color, size, ...otherProps } = props +const UilCloudMoonShowers = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudMoonShowers.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudMoonShowers.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudMoonShowers; \ No newline at end of file diff --git a/icons/uil-cloud-moon.js b/icons/uil-cloud-moon.js index 463f1f18..695de862 100644 --- a/icons/uil-cloud-moon.js +++ b/icons/uil-cloud-moon.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudMoon = (props) => { - const { color, size, ...otherProps } = props +const UilCloudMoon = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudMoon.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudMoon.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudMoon; \ No newline at end of file diff --git a/icons/uil-cloud-question.js b/icons/uil-cloud-question.js index 83512d5a..548eaa1f 100644 --- a/icons/uil-cloud-question.js +++ b/icons/uil-cloud-question.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudQuestion = (props) => { - const { color, size, ...otherProps } = props +const UilCloudQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudQuestion.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudQuestion.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudQuestion; \ No newline at end of file diff --git a/icons/uil-cloud-rain-sun.js b/icons/uil-cloud-rain-sun.js index f30ffa31..aacfa06d 100644 --- a/icons/uil-cloud-rain-sun.js +++ b/icons/uil-cloud-rain-sun.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudRainSun = (props) => { - const { color, size, ...otherProps } = props +const UilCloudRainSun = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudRainSun.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudRainSun.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudRainSun; \ No newline at end of file diff --git a/icons/uil-cloud-rain.js b/icons/uil-cloud-rain.js index 937f8355..4fb50e46 100644 --- a/icons/uil-cloud-rain.js +++ b/icons/uil-cloud-rain.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudRain = (props) => { - const { color, size, ...otherProps } = props +const UilCloudRain = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudRain.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudRain.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudRain; \ No newline at end of file diff --git a/icons/uil-cloud-redo.js b/icons/uil-cloud-redo.js index 62a70194..7c1e649e 100644 --- a/icons/uil-cloud-redo.js +++ b/icons/uil-cloud-redo.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudRedo = (props) => { - const { color, size, ...otherProps } = props +const UilCloudRedo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudRedo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudRedo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudRedo; \ No newline at end of file diff --git a/icons/uil-cloud-share.js b/icons/uil-cloud-share.js index 4690cfe5..aa00f6f3 100644 --- a/icons/uil-cloud-share.js +++ b/icons/uil-cloud-share.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudShare = (props) => { - const { color, size, ...otherProps } = props +const UilCloudShare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudShare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudShare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudShare; \ No newline at end of file diff --git a/icons/uil-cloud-shield.js b/icons/uil-cloud-shield.js index 9865e469..9afb67ed 100644 --- a/icons/uil-cloud-shield.js +++ b/icons/uil-cloud-shield.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudShield = (props) => { - const { color, size, ...otherProps } = props +const UilCloudShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudShield.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudShield.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudShield; \ No newline at end of file diff --git a/icons/uil-cloud-showers-alt.js b/icons/uil-cloud-showers-alt.js index 1c38fd26..d22b5f68 100644 --- a/icons/uil-cloud-showers-alt.js +++ b/icons/uil-cloud-showers-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudShowersAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCloudShowersAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudShowersAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudShowersAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudShowersAlt; \ No newline at end of file diff --git a/icons/uil-cloud-showers-heavy.js b/icons/uil-cloud-showers-heavy.js index 6f8a8540..95e22f4f 100644 --- a/icons/uil-cloud-showers-heavy.js +++ b/icons/uil-cloud-showers-heavy.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudShowersHeavy = (props) => { - const { color, size, ...otherProps } = props +const UilCloudShowersHeavy = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudShowersHeavy.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudShowersHeavy.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudShowersHeavy; \ No newline at end of file diff --git a/icons/uil-cloud-showers.js b/icons/uil-cloud-showers.js index f9c97d1b..0f100e77 100644 --- a/icons/uil-cloud-showers.js +++ b/icons/uil-cloud-showers.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudShowers = (props) => { - const { color, size, ...otherProps } = props +const UilCloudShowers = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudShowers.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudShowers.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudShowers; \ No newline at end of file diff --git a/icons/uil-cloud-slash.js b/icons/uil-cloud-slash.js index 0530cc97..2b74d83b 100644 --- a/icons/uil-cloud-slash.js +++ b/icons/uil-cloud-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudSlash = (props) => { - const { color, size, ...otherProps } = props +const UilCloudSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudSlash; \ No newline at end of file diff --git a/icons/uil-cloud-sun-hail.js b/icons/uil-cloud-sun-hail.js index 16db0dc2..aa08a793 100644 --- a/icons/uil-cloud-sun-hail.js +++ b/icons/uil-cloud-sun-hail.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudSunHail = (props) => { - const { color, size, ...otherProps } = props +const UilCloudSunHail = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudSunHail.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudSunHail.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudSunHail; \ No newline at end of file diff --git a/icons/uil-cloud-sun-meatball.js b/icons/uil-cloud-sun-meatball.js index 43140f04..5e0f11b3 100644 --- a/icons/uil-cloud-sun-meatball.js +++ b/icons/uil-cloud-sun-meatball.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudSunMeatball = (props) => { - const { color, size, ...otherProps } = props +const UilCloudSunMeatball = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudSunMeatball.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudSunMeatball.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudSunMeatball; \ No newline at end of file diff --git a/icons/uil-cloud-sun-rain-alt.js b/icons/uil-cloud-sun-rain-alt.js index aeabd670..59bbd912 100644 --- a/icons/uil-cloud-sun-rain-alt.js +++ b/icons/uil-cloud-sun-rain-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudSunRainAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCloudSunRainAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudSunRainAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudSunRainAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudSunRainAlt; \ No newline at end of file diff --git a/icons/uil-cloud-sun-rain.js b/icons/uil-cloud-sun-rain.js index 55237de8..6f637e98 100644 --- a/icons/uil-cloud-sun-rain.js +++ b/icons/uil-cloud-sun-rain.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudSunRain = (props) => { - const { color, size, ...otherProps } = props +const UilCloudSunRain = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudSunRain.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudSunRain.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudSunRain; \ No newline at end of file diff --git a/icons/uil-cloud-sun-tear.js b/icons/uil-cloud-sun-tear.js index 0f52feb7..7babfcc4 100644 --- a/icons/uil-cloud-sun-tear.js +++ b/icons/uil-cloud-sun-tear.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudSunTear = (props) => { - const { color, size, ...otherProps } = props +const UilCloudSunTear = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudSunTear.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudSunTear.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudSunTear; \ No newline at end of file diff --git a/icons/uil-cloud-sun.js b/icons/uil-cloud-sun.js index f4c7c5b4..8dcb7b35 100644 --- a/icons/uil-cloud-sun.js +++ b/icons/uil-cloud-sun.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudSun = (props) => { - const { color, size, ...otherProps } = props +const UilCloudSun = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudSun.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudSun.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudSun; \ No newline at end of file diff --git a/icons/uil-cloud-times.js b/icons/uil-cloud-times.js index 9fbbe060..45125303 100644 --- a/icons/uil-cloud-times.js +++ b/icons/uil-cloud-times.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudTimes = (props) => { - const { color, size, ...otherProps } = props +const UilCloudTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudTimes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudTimes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudTimes; \ No newline at end of file diff --git a/icons/uil-cloud-unlock.js b/icons/uil-cloud-unlock.js index cf32d1cd..082a8a8e 100644 --- a/icons/uil-cloud-unlock.js +++ b/icons/uil-cloud-unlock.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudUnlock = (props) => { - const { color, size, ...otherProps } = props +const UilCloudUnlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudUnlock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudUnlock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudUnlock; \ No newline at end of file diff --git a/icons/uil-cloud-upload.js b/icons/uil-cloud-upload.js index 8f830454..80fe8871 100644 --- a/icons/uil-cloud-upload.js +++ b/icons/uil-cloud-upload.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudUpload = (props) => { - const { color, size, ...otherProps } = props +const UilCloudUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudUpload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudUpload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudUpload; \ No newline at end of file diff --git a/icons/uil-cloud-wifi.js b/icons/uil-cloud-wifi.js index eb5f6103..819bc1d7 100644 --- a/icons/uil-cloud-wifi.js +++ b/icons/uil-cloud-wifi.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudWifi = (props) => { - const { color, size, ...otherProps } = props +const UilCloudWifi = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudWifi.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudWifi.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudWifi; \ No newline at end of file diff --git a/icons/uil-cloud-wind.js b/icons/uil-cloud-wind.js index 3b07bb15..764f93b2 100644 --- a/icons/uil-cloud-wind.js +++ b/icons/uil-cloud-wind.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloudWind = (props) => { - const { color, size, ...otherProps } = props +const UilCloudWind = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloudWind.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloudWind.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloudWind; \ No newline at end of file diff --git a/icons/uil-cloud.js b/icons/uil-cloud.js index 683b865e..f952f157 100644 --- a/icons/uil-cloud.js +++ b/icons/uil-cloud.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCloud = (props) => { - const { color, size, ...otherProps } = props +const UilCloud = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCloud.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCloud.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCloud; \ No newline at end of file diff --git a/icons/uil-clouds.js b/icons/uil-clouds.js index 33fb46a0..1d217ab8 100644 --- a/icons/uil-clouds.js +++ b/icons/uil-clouds.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClouds = (props) => { - const { color, size, ...otherProps } = props +const UilClouds = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClouds.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClouds.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClouds; \ No newline at end of file diff --git a/icons/uil-club.js b/icons/uil-club.js index 7c0c0e71..e5334e8b 100644 --- a/icons/uil-club.js +++ b/icons/uil-club.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilClub = (props) => { - const { color, size, ...otherProps } = props +const UilClub = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilClub.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilClub.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilClub; \ No newline at end of file diff --git a/icons/uil-code-branch.js b/icons/uil-code-branch.js index e397a117..c17d8d20 100644 --- a/icons/uil-code-branch.js +++ b/icons/uil-code-branch.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCodeBranch = (props) => { - const { color, size, ...otherProps } = props +const UilCodeBranch = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCodeBranch.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCodeBranch.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCodeBranch; \ No newline at end of file diff --git a/icons/uil-coffee.js b/icons/uil-coffee.js index 51525806..c14a14f5 100644 --- a/icons/uil-coffee.js +++ b/icons/uil-coffee.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCoffee = (props) => { - const { color, size, ...otherProps } = props +const UilCoffee = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCoffee.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCoffee.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCoffee; \ No newline at end of file diff --git a/icons/uil-cog.js b/icons/uil-cog.js index 461759c9..f5a29e33 100644 --- a/icons/uil-cog.js +++ b/icons/uil-cog.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCog = (props) => { - const { color, size, ...otherProps } = props +const UilCog = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCog.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCog.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCog; \ No newline at end of file diff --git a/icons/uil-coins.js b/icons/uil-coins.js index 4121966d..bfb419c5 100644 --- a/icons/uil-coins.js +++ b/icons/uil-coins.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCoins = (props) => { - const { color, size, ...otherProps } = props +const UilCoins = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCoins.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCoins.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCoins; \ No newline at end of file diff --git a/icons/uil-columns.js b/icons/uil-columns.js index 9fa2f2bb..edee0992 100644 --- a/icons/uil-columns.js +++ b/icons/uil-columns.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilColumns = (props) => { - const { color, size, ...otherProps } = props +const UilColumns = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilColumns.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilColumns.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilColumns; \ No newline at end of file diff --git a/icons/uil-comment-add.js b/icons/uil-comment-add.js index 900c4191..329e4175 100644 --- a/icons/uil-comment-add.js +++ b/icons/uil-comment-add.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAdd = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAdd.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAdd.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAdd; \ No newline at end of file diff --git a/icons/uil-comment-alt-block.js b/icons/uil-comment-alt-block.js index f2f43a5f..84bb8560 100644 --- a/icons/uil-comment-alt-block.js +++ b/icons/uil-comment-alt-block.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltBlock = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltBlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltBlock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltBlock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltBlock; \ No newline at end of file diff --git a/icons/uil-comment-alt-chart-lines.js b/icons/uil-comment-alt-chart-lines.js index e62578d9..eff9108a 100644 --- a/icons/uil-comment-alt-chart-lines.js +++ b/icons/uil-comment-alt-chart-lines.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltChartLines = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltChartLines = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltChartLines.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltChartLines.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltChartLines; \ No newline at end of file diff --git a/icons/uil-comment-alt-check.js b/icons/uil-comment-alt-check.js index ea98fb92..3314feea 100644 --- a/icons/uil-comment-alt-check.js +++ b/icons/uil-comment-alt-check.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltCheck = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltCheck.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltCheck.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltCheck; \ No newline at end of file diff --git a/icons/uil-comment-alt-dots.js b/icons/uil-comment-alt-dots.js index 83bc4af2..f18eb656 100644 --- a/icons/uil-comment-alt-dots.js +++ b/icons/uil-comment-alt-dots.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltDots = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltDots = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltDots.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltDots.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltDots; \ No newline at end of file diff --git a/icons/uil-comment-alt-download.js b/icons/uil-comment-alt-download.js index e2342a43..48db9e95 100644 --- a/icons/uil-comment-alt-download.js +++ b/icons/uil-comment-alt-download.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltDownload = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltDownload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltDownload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltDownload; \ No newline at end of file diff --git a/icons/uil-comment-alt-edit.js b/icons/uil-comment-alt-edit.js index e79b88ac..a2d73121 100644 --- a/icons/uil-comment-alt-edit.js +++ b/icons/uil-comment-alt-edit.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltEdit = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltEdit.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltEdit.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltEdit; \ No newline at end of file diff --git a/icons/uil-comment-alt-exclamation.js b/icons/uil-comment-alt-exclamation.js index 687a6249..3f8cdb02 100644 --- a/icons/uil-comment-alt-exclamation.js +++ b/icons/uil-comment-alt-exclamation.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltExclamation = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltExclamation.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltExclamation.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltExclamation; \ No newline at end of file diff --git a/icons/uil-comment-alt-heart.js b/icons/uil-comment-alt-heart.js index 554eabfc..27f6f7bc 100644 --- a/icons/uil-comment-alt-heart.js +++ b/icons/uil-comment-alt-heart.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltHeart = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltHeart.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltHeart.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltHeart; \ No newline at end of file diff --git a/icons/uil-comment-alt-image.js b/icons/uil-comment-alt-image.js index 414cc3d8..eccc475a 100644 --- a/icons/uil-comment-alt-image.js +++ b/icons/uil-comment-alt-image.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltImage = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltImage = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltImage.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltImage.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltImage; \ No newline at end of file diff --git a/icons/uil-comment-alt-info.js b/icons/uil-comment-alt-info.js index db39b386..78ebdc03 100644 --- a/icons/uil-comment-alt-info.js +++ b/icons/uil-comment-alt-info.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltInfo = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltInfo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltInfo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltInfo; \ No newline at end of file diff --git a/icons/uil-comment-alt-lines.js b/icons/uil-comment-alt-lines.js index e3e32067..1a84bbf4 100644 --- a/icons/uil-comment-alt-lines.js +++ b/icons/uil-comment-alt-lines.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltLines = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltLines = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltLines.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltLines.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltLines; \ No newline at end of file diff --git a/icons/uil-comment-alt-lock.js b/icons/uil-comment-alt-lock.js index 472bbfbd..a3face86 100644 --- a/icons/uil-comment-alt-lock.js +++ b/icons/uil-comment-alt-lock.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltLock = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltLock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltLock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltLock; \ No newline at end of file diff --git a/icons/uil-comment-alt-medical.js b/icons/uil-comment-alt-medical.js index 7e37cbe0..98faac08 100644 --- a/icons/uil-comment-alt-medical.js +++ b/icons/uil-comment-alt-medical.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltMedical = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltMedical.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltMedical.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltMedical; \ No newline at end of file diff --git a/icons/uil-comment-alt-message.js b/icons/uil-comment-alt-message.js index 62d8a5ed..fa8cf089 100644 --- a/icons/uil-comment-alt-message.js +++ b/icons/uil-comment-alt-message.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltMessage = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltMessage = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltMessage.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltMessage.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltMessage; \ No newline at end of file diff --git a/icons/uil-comment-alt-notes.js b/icons/uil-comment-alt-notes.js index d1946ef5..b8b9142c 100644 --- a/icons/uil-comment-alt-notes.js +++ b/icons/uil-comment-alt-notes.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltNotes = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltNotes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltNotes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltNotes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltNotes; \ No newline at end of file diff --git a/icons/uil-comment-alt-plus.js b/icons/uil-comment-alt-plus.js index 4f3c1b3d..272a8f28 100644 --- a/icons/uil-comment-alt-plus.js +++ b/icons/uil-comment-alt-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltPlus = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltPlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltPlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltPlus; \ No newline at end of file diff --git a/icons/uil-comment-alt-question.js b/icons/uil-comment-alt-question.js index 0693306a..95a987c0 100644 --- a/icons/uil-comment-alt-question.js +++ b/icons/uil-comment-alt-question.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltQuestion = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltQuestion.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltQuestion.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltQuestion; \ No newline at end of file diff --git a/icons/uil-comment-alt-redo.js b/icons/uil-comment-alt-redo.js index 0ada12ae..a42f248a 100644 --- a/icons/uil-comment-alt-redo.js +++ b/icons/uil-comment-alt-redo.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltRedo = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltRedo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltRedo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltRedo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltRedo; \ No newline at end of file diff --git a/icons/uil-comment-alt-search.js b/icons/uil-comment-alt-search.js index bad158f7..d184ebd4 100644 --- a/icons/uil-comment-alt-search.js +++ b/icons/uil-comment-alt-search.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltSearch = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltSearch = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltSearch.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltSearch.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltSearch; \ No newline at end of file diff --git a/icons/uil-comment-alt-share.js b/icons/uil-comment-alt-share.js index 7353f556..02531fd8 100644 --- a/icons/uil-comment-alt-share.js +++ b/icons/uil-comment-alt-share.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltShare = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltShare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltShare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltShare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltShare; \ No newline at end of file diff --git a/icons/uil-comment-alt-shield.js b/icons/uil-comment-alt-shield.js index 636d5d0f..fe82b968 100644 --- a/icons/uil-comment-alt-shield.js +++ b/icons/uil-comment-alt-shield.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltShield = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltShield.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltShield.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltShield; \ No newline at end of file diff --git a/icons/uil-comment-alt-slash.js b/icons/uil-comment-alt-slash.js index 51fca574..95f4e4f8 100644 --- a/icons/uil-comment-alt-slash.js +++ b/icons/uil-comment-alt-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltSlash = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltSlash; \ No newline at end of file diff --git a/icons/uil-comment-alt-upload.js b/icons/uil-comment-alt-upload.js index aa856430..0d149979 100644 --- a/icons/uil-comment-alt-upload.js +++ b/icons/uil-comment-alt-upload.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltUpload = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltUpload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltUpload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltUpload; \ No newline at end of file diff --git a/icons/uil-comment-alt-verify.js b/icons/uil-comment-alt-verify.js index f0557253..7afd8093 100644 --- a/icons/uil-comment-alt-verify.js +++ b/icons/uil-comment-alt-verify.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAltVerify = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAltVerify = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAltVerify.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAltVerify.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAltVerify; \ No newline at end of file diff --git a/icons/uil-comment-alt.js b/icons/uil-comment-alt.js index e31956ae..656b1847 100644 --- a/icons/uil-comment-alt.js +++ b/icons/uil-comment-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCommentAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentAlt; \ No newline at end of file diff --git a/icons/uil-comment-block.js b/icons/uil-comment-block.js index b04b63a3..e3d181b0 100644 --- a/icons/uil-comment-block.js +++ b/icons/uil-comment-block.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentBlock = (props) => { - const { color, size, ...otherProps } = props +const UilCommentBlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentBlock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentBlock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentBlock; \ No newline at end of file diff --git a/icons/uil-comment-chart-line.js b/icons/uil-comment-chart-line.js index 9c5e866d..74e33001 100644 --- a/icons/uil-comment-chart-line.js +++ b/icons/uil-comment-chart-line.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentChartLine = (props) => { - const { color, size, ...otherProps } = props +const UilCommentChartLine = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentChartLine.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentChartLine.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentChartLine; \ No newline at end of file diff --git a/icons/uil-comment-check.js b/icons/uil-comment-check.js index 66318b29..0fd412ab 100644 --- a/icons/uil-comment-check.js +++ b/icons/uil-comment-check.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentCheck = (props) => { - const { color, size, ...otherProps } = props +const UilCommentCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentCheck.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentCheck.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentCheck; \ No newline at end of file diff --git a/icons/uil-comment-dots.js b/icons/uil-comment-dots.js index 922f3e53..30874bf6 100644 --- a/icons/uil-comment-dots.js +++ b/icons/uil-comment-dots.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentDots = (props) => { - const { color, size, ...otherProps } = props +const UilCommentDots = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentDots.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentDots.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentDots; \ No newline at end of file diff --git a/icons/uil-comment-download.js b/icons/uil-comment-download.js index 0c75bdcf..4a511c93 100644 --- a/icons/uil-comment-download.js +++ b/icons/uil-comment-download.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentDownload = (props) => { - const { color, size, ...otherProps } = props +const UilCommentDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentDownload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentDownload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentDownload; \ No newline at end of file diff --git a/icons/uil-comment-edit.js b/icons/uil-comment-edit.js index 74c4d5c9..3cf41bcf 100644 --- a/icons/uil-comment-edit.js +++ b/icons/uil-comment-edit.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentEdit = (props) => { - const { color, size, ...otherProps } = props +const UilCommentEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentEdit.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentEdit.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentEdit; \ No newline at end of file diff --git a/icons/uil-comment-exclamation.js b/icons/uil-comment-exclamation.js index 3ef565f5..980762c2 100644 --- a/icons/uil-comment-exclamation.js +++ b/icons/uil-comment-exclamation.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentExclamation = (props) => { - const { color, size, ...otherProps } = props +const UilCommentExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentExclamation.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentExclamation.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentExclamation; \ No newline at end of file diff --git a/icons/uil-comment-heart.js b/icons/uil-comment-heart.js index 0f81c9e4..ac9b3f37 100644 --- a/icons/uil-comment-heart.js +++ b/icons/uil-comment-heart.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentHeart = (props) => { - const { color, size, ...otherProps } = props +const UilCommentHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentHeart.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentHeart.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentHeart; \ No newline at end of file diff --git a/icons/uil-comment-image.js b/icons/uil-comment-image.js index ccc37942..d55f551e 100644 --- a/icons/uil-comment-image.js +++ b/icons/uil-comment-image.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentImage = (props) => { - const { color, size, ...otherProps } = props +const UilCommentImage = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentImage.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentImage.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentImage; \ No newline at end of file diff --git a/icons/uil-comment-info-alt.js b/icons/uil-comment-info-alt.js index 3abbb764..dc8fd2ba 100644 --- a/icons/uil-comment-info-alt.js +++ b/icons/uil-comment-info-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentInfoAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCommentInfoAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentInfoAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentInfoAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentInfoAlt; \ No newline at end of file diff --git a/icons/uil-comment-info.js b/icons/uil-comment-info.js index 7423254c..bfb5bf22 100644 --- a/icons/uil-comment-info.js +++ b/icons/uil-comment-info.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentInfo = (props) => { - const { color, size, ...otherProps } = props +const UilCommentInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentInfo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentInfo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentInfo; \ No newline at end of file diff --git a/icons/uil-comment-lines.js b/icons/uil-comment-lines.js index 640b55c5..79d22fe2 100644 --- a/icons/uil-comment-lines.js +++ b/icons/uil-comment-lines.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentLines = (props) => { - const { color, size, ...otherProps } = props +const UilCommentLines = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentLines.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentLines.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentLines; \ No newline at end of file diff --git a/icons/uil-comment-lock.js b/icons/uil-comment-lock.js index bb287dfd..c1a4dbb9 100644 --- a/icons/uil-comment-lock.js +++ b/icons/uil-comment-lock.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentLock = (props) => { - const { color, size, ...otherProps } = props +const UilCommentLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentLock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentLock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentLock; \ No newline at end of file diff --git a/icons/uil-comment-medical.js b/icons/uil-comment-medical.js index 53e92b35..8f67a52d 100644 --- a/icons/uil-comment-medical.js +++ b/icons/uil-comment-medical.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentMedical = (props) => { - const { color, size, ...otherProps } = props +const UilCommentMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentMedical.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentMedical.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentMedical; \ No newline at end of file diff --git a/icons/uil-comment-message.js b/icons/uil-comment-message.js index 8956fdb0..1d13ceb4 100644 --- a/icons/uil-comment-message.js +++ b/icons/uil-comment-message.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentMessage = (props) => { - const { color, size, ...otherProps } = props +const UilCommentMessage = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentMessage.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentMessage.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentMessage; \ No newline at end of file diff --git a/icons/uil-comment-notes.js b/icons/uil-comment-notes.js index c5025611..7416ba36 100644 --- a/icons/uil-comment-notes.js +++ b/icons/uil-comment-notes.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentNotes = (props) => { - const { color, size, ...otherProps } = props +const UilCommentNotes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentNotes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentNotes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentNotes; \ No newline at end of file diff --git a/icons/uil-comment-plus.js b/icons/uil-comment-plus.js index 233d4e94..5cc356d5 100644 --- a/icons/uil-comment-plus.js +++ b/icons/uil-comment-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentPlus = (props) => { - const { color, size, ...otherProps } = props +const UilCommentPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentPlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentPlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentPlus; \ No newline at end of file diff --git a/icons/uil-comment-question.js b/icons/uil-comment-question.js index a8ad02ee..aaa8f75e 100644 --- a/icons/uil-comment-question.js +++ b/icons/uil-comment-question.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentQuestion = (props) => { - const { color, size, ...otherProps } = props +const UilCommentQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentQuestion.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentQuestion.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentQuestion; \ No newline at end of file diff --git a/icons/uil-comment-redo.js b/icons/uil-comment-redo.js index 8c838bef..a6e583d2 100644 --- a/icons/uil-comment-redo.js +++ b/icons/uil-comment-redo.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentRedo = (props) => { - const { color, size, ...otherProps } = props +const UilCommentRedo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentRedo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentRedo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentRedo; \ No newline at end of file diff --git a/icons/uil-comment-search.js b/icons/uil-comment-search.js index 633ea533..970deb85 100644 --- a/icons/uil-comment-search.js +++ b/icons/uil-comment-search.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentSearch = (props) => { - const { color, size, ...otherProps } = props +const UilCommentSearch = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentSearch.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentSearch.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentSearch; \ No newline at end of file diff --git a/icons/uil-comment-share.js b/icons/uil-comment-share.js index 994f547e..06e28cfa 100644 --- a/icons/uil-comment-share.js +++ b/icons/uil-comment-share.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentShare = (props) => { - const { color, size, ...otherProps } = props +const UilCommentShare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentShare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentShare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentShare; \ No newline at end of file diff --git a/icons/uil-comment-shield.js b/icons/uil-comment-shield.js index d12cdef9..52e994de 100644 --- a/icons/uil-comment-shield.js +++ b/icons/uil-comment-shield.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentShield = (props) => { - const { color, size, ...otherProps } = props +const UilCommentShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentShield.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentShield.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentShield; \ No newline at end of file diff --git a/icons/uil-comment-slash.js b/icons/uil-comment-slash.js index 6721aea8..72aa519f 100644 --- a/icons/uil-comment-slash.js +++ b/icons/uil-comment-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentSlash = (props) => { - const { color, size, ...otherProps } = props +const UilCommentSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentSlash; \ No newline at end of file diff --git a/icons/uil-comment-upload.js b/icons/uil-comment-upload.js index 3e08d84e..7d30ed1a 100644 --- a/icons/uil-comment-upload.js +++ b/icons/uil-comment-upload.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentUpload = (props) => { - const { color, size, ...otherProps } = props +const UilCommentUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentUpload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentUpload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentUpload; \ No newline at end of file diff --git a/icons/uil-comment-verify.js b/icons/uil-comment-verify.js index 8484a0f4..f8574c2b 100644 --- a/icons/uil-comment-verify.js +++ b/icons/uil-comment-verify.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentVerify = (props) => { - const { color, size, ...otherProps } = props +const UilCommentVerify = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentVerify.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentVerify.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentVerify; \ No newline at end of file diff --git a/icons/uil-comment.js b/icons/uil-comment.js index 76e94a30..d17ded2d 100644 --- a/icons/uil-comment.js +++ b/icons/uil-comment.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilComment = (props) => { - const { color, size, ...otherProps } = props +const UilComment = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilComment.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilComment.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilComment; \ No newline at end of file diff --git a/icons/uil-comments-alt.js b/icons/uil-comments-alt.js index 36bdf3df..0638709a 100644 --- a/icons/uil-comments-alt.js +++ b/icons/uil-comments-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCommentsAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCommentsAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCommentsAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCommentsAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCommentsAlt; \ No newline at end of file diff --git a/icons/uil-comments.js b/icons/uil-comments.js index a62cb5c7..7381a527 100644 --- a/icons/uil-comments.js +++ b/icons/uil-comments.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilComments = (props) => { - const { color, size, ...otherProps } = props +const UilComments = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilComments.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilComments.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilComments; \ No newline at end of file diff --git a/icons/uil-compact-disc.js b/icons/uil-compact-disc.js index 7c6bc36a..3b332d30 100644 --- a/icons/uil-compact-disc.js +++ b/icons/uil-compact-disc.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCompactDisc = (props) => { - const { color, size, ...otherProps } = props +const UilCompactDisc = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCompactDisc.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCompactDisc.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCompactDisc; \ No newline at end of file diff --git a/icons/uil-comparison.js b/icons/uil-comparison.js index 41ee6ecb..860d6322 100644 --- a/icons/uil-comparison.js +++ b/icons/uil-comparison.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilComparison = (props) => { - const { color, size, ...otherProps } = props +const UilComparison = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilComparison.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilComparison.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilComparison; \ No newline at end of file diff --git a/icons/uil-compass.js b/icons/uil-compass.js index 49b6c189..1f427f20 100644 --- a/icons/uil-compass.js +++ b/icons/uil-compass.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCompass = (props) => { - const { color, size, ...otherProps } = props +const UilCompass = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCompass.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCompass.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCompass; \ No newline at end of file diff --git a/icons/uil-compress-alt-left.js b/icons/uil-compress-alt-left.js index 7699b156..1d3a8663 100644 --- a/icons/uil-compress-alt-left.js +++ b/icons/uil-compress-alt-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCompressAltLeft = (props) => { - const { color, size, ...otherProps } = props +const UilCompressAltLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCompressAltLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCompressAltLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCompressAltLeft; \ No newline at end of file diff --git a/icons/uil-compress-alt.js b/icons/uil-compress-alt.js index 4d660809..1a5a7bc0 100644 --- a/icons/uil-compress-alt.js +++ b/icons/uil-compress-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCompressAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCompressAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCompressAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCompressAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCompressAlt; \ No newline at end of file diff --git a/icons/uil-compress-arrows.js b/icons/uil-compress-arrows.js index 3e70f674..2771c5bd 100644 --- a/icons/uil-compress-arrows.js +++ b/icons/uil-compress-arrows.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCompressArrows = (props) => { - const { color, size, ...otherProps } = props +const UilCompressArrows = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCompressArrows.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCompressArrows.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCompressArrows; \ No newline at end of file diff --git a/icons/uil-compress-lines.js b/icons/uil-compress-lines.js index 65d45e67..3052d12a 100644 --- a/icons/uil-compress-lines.js +++ b/icons/uil-compress-lines.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCompressLines = (props) => { - const { color, size, ...otherProps } = props +const UilCompressLines = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCompressLines.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCompressLines.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCompressLines; \ No newline at end of file diff --git a/icons/uil-compress-point.js b/icons/uil-compress-point.js index f07ebc39..bdcb0aa5 100644 --- a/icons/uil-compress-point.js +++ b/icons/uil-compress-point.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCompressPoint = (props) => { - const { color, size, ...otherProps } = props +const UilCompressPoint = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCompressPoint.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCompressPoint.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCompressPoint; \ No newline at end of file diff --git a/icons/uil-compress-v.js b/icons/uil-compress-v.js index 77f20b3a..8ff5f827 100644 --- a/icons/uil-compress-v.js +++ b/icons/uil-compress-v.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCompressV = (props) => { - const { color, size, ...otherProps } = props +const UilCompressV = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCompressV.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCompressV.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCompressV; \ No newline at end of file diff --git a/icons/uil-compress.js b/icons/uil-compress.js index fbac3d7d..bf479ccb 100644 --- a/icons/uil-compress.js +++ b/icons/uil-compress.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCompress = (props) => { - const { color, size, ...otherProps } = props +const UilCompress = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCompress.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCompress.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCompress; \ No newline at end of file diff --git a/icons/uil-confused.js b/icons/uil-confused.js index d9d9ad24..82c75328 100644 --- a/icons/uil-confused.js +++ b/icons/uil-confused.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilConfused = (props) => { - const { color, size, ...otherProps } = props +const UilConfused = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilConfused.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilConfused.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilConfused; \ No newline at end of file diff --git a/icons/uil-constructor.js b/icons/uil-constructor.js index 994bcd42..370f601f 100644 --- a/icons/uil-constructor.js +++ b/icons/uil-constructor.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilConstructor = (props) => { - const { color, size, ...otherProps } = props +const UilConstructor = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilConstructor.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilConstructor.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilConstructor; \ No newline at end of file diff --git a/icons/uil-copy-alt.js b/icons/uil-copy-alt.js index fe0647b7..46a094ad 100644 --- a/icons/uil-copy-alt.js +++ b/icons/uil-copy-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCopyAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCopyAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCopyAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCopyAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCopyAlt; \ No newline at end of file diff --git a/icons/uil-copy-landscape.js b/icons/uil-copy-landscape.js index 788c3444..67ed3db3 100644 --- a/icons/uil-copy-landscape.js +++ b/icons/uil-copy-landscape.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCopyLandscape = (props) => { - const { color, size, ...otherProps } = props +const UilCopyLandscape = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCopyLandscape.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCopyLandscape.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCopyLandscape; \ No newline at end of file diff --git a/icons/uil-copy.js b/icons/uil-copy.js index 8d686449..f1fa2489 100644 --- a/icons/uil-copy.js +++ b/icons/uil-copy.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCopy = (props) => { - const { color, size, ...otherProps } = props +const UilCopy = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCopy.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCopy.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCopy; \ No newline at end of file diff --git a/icons/uil-copyright.js b/icons/uil-copyright.js index 1a51fdd9..7d287da1 100644 --- a/icons/uil-copyright.js +++ b/icons/uil-copyright.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCopyright = (props) => { - const { color, size, ...otherProps } = props +const UilCopyright = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCopyright.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCopyright.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCopyright; \ No newline at end of file diff --git a/icons/uil-corner-down-left.js b/icons/uil-corner-down-left.js index 1314cb2f..96ad36f9 100644 --- a/icons/uil-corner-down-left.js +++ b/icons/uil-corner-down-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCornerDownLeft = (props) => { - const { color, size, ...otherProps } = props +const UilCornerDownLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCornerDownLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCornerDownLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCornerDownLeft; \ No newline at end of file diff --git a/icons/uil-corner-down-right-alt.js b/icons/uil-corner-down-right-alt.js index a5293222..b2e988bd 100644 --- a/icons/uil-corner-down-right-alt.js +++ b/icons/uil-corner-down-right-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCornerDownRightAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCornerDownRightAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCornerDownRightAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCornerDownRightAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCornerDownRightAlt; \ No newline at end of file diff --git a/icons/uil-corner-down-right.js b/icons/uil-corner-down-right.js index 60fc9188..e7efcc13 100644 --- a/icons/uil-corner-down-right.js +++ b/icons/uil-corner-down-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCornerDownRight = (props) => { - const { color, size, ...otherProps } = props +const UilCornerDownRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCornerDownRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCornerDownRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCornerDownRight; \ No newline at end of file diff --git a/icons/uil-corner-left-down.js b/icons/uil-corner-left-down.js index d60a2136..68abc36b 100644 --- a/icons/uil-corner-left-down.js +++ b/icons/uil-corner-left-down.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCornerLeftDown = (props) => { - const { color, size, ...otherProps } = props +const UilCornerLeftDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCornerLeftDown.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCornerLeftDown.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCornerLeftDown; \ No newline at end of file diff --git a/icons/uil-corner-right-down.js b/icons/uil-corner-right-down.js index 213e3bce..a38350e0 100644 --- a/icons/uil-corner-right-down.js +++ b/icons/uil-corner-right-down.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCornerRightDown = (props) => { - const { color, size, ...otherProps } = props +const UilCornerRightDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCornerRightDown.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCornerRightDown.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCornerRightDown; \ No newline at end of file diff --git a/icons/uil-corner-up-left-alt.js b/icons/uil-corner-up-left-alt.js index f0976562..f8fb4108 100644 --- a/icons/uil-corner-up-left-alt.js +++ b/icons/uil-corner-up-left-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCornerUpLeftAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCornerUpLeftAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCornerUpLeftAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCornerUpLeftAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCornerUpLeftAlt; \ No newline at end of file diff --git a/icons/uil-corner-up-left.js b/icons/uil-corner-up-left.js index 60a4984f..1565cb62 100644 --- a/icons/uil-corner-up-left.js +++ b/icons/uil-corner-up-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCornerUpLeft = (props) => { - const { color, size, ...otherProps } = props +const UilCornerUpLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCornerUpLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCornerUpLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCornerUpLeft; \ No newline at end of file diff --git a/icons/uil-corner-up-right-alt.js b/icons/uil-corner-up-right-alt.js index 5f1ea628..4c346bed 100644 --- a/icons/uil-corner-up-right-alt.js +++ b/icons/uil-corner-up-right-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCornerUpRightAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCornerUpRightAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCornerUpRightAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCornerUpRightAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCornerUpRightAlt; \ No newline at end of file diff --git a/icons/uil-corner-up-right.js b/icons/uil-corner-up-right.js index 5b9c568c..3b3b81e4 100644 --- a/icons/uil-corner-up-right.js +++ b/icons/uil-corner-up-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCornerUpRight = (props) => { - const { color, size, ...otherProps } = props +const UilCornerUpRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCornerUpRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCornerUpRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCornerUpRight; \ No newline at end of file diff --git a/icons/uil-coronavirus.js b/icons/uil-coronavirus.js index 0876df60..684a8b9a 100644 --- a/icons/uil-coronavirus.js +++ b/icons/uil-coronavirus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCoronavirus = (props) => { - const { color, size, ...otherProps } = props +const UilCoronavirus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCoronavirus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCoronavirus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCoronavirus; \ No newline at end of file diff --git a/icons/uil-create-dashboard.js b/icons/uil-create-dashboard.js index c1e102ed..9846ea6e 100644 --- a/icons/uil-create-dashboard.js +++ b/icons/uil-create-dashboard.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCreateDashboard = (props) => { - const { color, size, ...otherProps } = props +const UilCreateDashboard = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCreateDashboard.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCreateDashboard.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCreateDashboard; \ No newline at end of file diff --git a/icons/uil-creative-commons-pd.js b/icons/uil-creative-commons-pd.js index 7b4730e6..97d760fa 100644 --- a/icons/uil-creative-commons-pd.js +++ b/icons/uil-creative-commons-pd.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCreativeCommonsPd = (props) => { - const { color, size, ...otherProps } = props +const UilCreativeCommonsPd = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCreativeCommonsPd.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCreativeCommonsPd.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCreativeCommonsPd; \ No newline at end of file diff --git a/icons/uil-credit-card-search.js b/icons/uil-credit-card-search.js index 37a3f7e8..5e43f885 100644 --- a/icons/uil-credit-card-search.js +++ b/icons/uil-credit-card-search.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCreditCardSearch = (props) => { - const { color, size, ...otherProps } = props +const UilCreditCardSearch = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCreditCardSearch.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCreditCardSearch.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCreditCardSearch; \ No newline at end of file diff --git a/icons/uil-credit-card.js b/icons/uil-credit-card.js index b118ab24..71e04171 100644 --- a/icons/uil-credit-card.js +++ b/icons/uil-credit-card.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCreditCard = (props) => { - const { color, size, ...otherProps } = props +const UilCreditCard = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCreditCard.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCreditCard.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCreditCard; \ No newline at end of file diff --git a/icons/uil-crockery.js b/icons/uil-crockery.js index d8ea17a0..a547f9c6 100644 --- a/icons/uil-crockery.js +++ b/icons/uil-crockery.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCrockery = (props) => { - const { color, size, ...otherProps } = props +const UilCrockery = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCrockery.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCrockery.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCrockery; \ No newline at end of file diff --git a/icons/uil-crop-alt-rotate-left.js b/icons/uil-crop-alt-rotate-left.js index 285d0022..4bde84d9 100644 --- a/icons/uil-crop-alt-rotate-left.js +++ b/icons/uil-crop-alt-rotate-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCropAltRotateLeft = (props) => { - const { color, size, ...otherProps } = props +const UilCropAltRotateLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCropAltRotateLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCropAltRotateLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCropAltRotateLeft; \ No newline at end of file diff --git a/icons/uil-crop-alt-rotate-right.js b/icons/uil-crop-alt-rotate-right.js index a0eafbfe..17413f79 100644 --- a/icons/uil-crop-alt-rotate-right.js +++ b/icons/uil-crop-alt-rotate-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCropAltRotateRight = (props) => { - const { color, size, ...otherProps } = props +const UilCropAltRotateRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCropAltRotateRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCropAltRotateRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCropAltRotateRight; \ No newline at end of file diff --git a/icons/uil-crop-alt.js b/icons/uil-crop-alt.js index 07db8eb2..59f686c6 100644 --- a/icons/uil-crop-alt.js +++ b/icons/uil-crop-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCropAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCropAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCropAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCropAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCropAlt; \ No newline at end of file diff --git a/icons/uil-crosshair-alt.js b/icons/uil-crosshair-alt.js index 323684c0..c12da593 100644 --- a/icons/uil-crosshair-alt.js +++ b/icons/uil-crosshair-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCrosshairAlt = (props) => { - const { color, size, ...otherProps } = props +const UilCrosshairAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCrosshairAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCrosshairAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCrosshairAlt; \ No newline at end of file diff --git a/icons/uil-crosshair.js b/icons/uil-crosshair.js index 13c0c4b3..cb369a4d 100644 --- a/icons/uil-crosshair.js +++ b/icons/uil-crosshair.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCrosshair = (props) => { - const { color, size, ...otherProps } = props +const UilCrosshair = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCrosshair.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCrosshair.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCrosshair; \ No newline at end of file diff --git a/icons/uil-crosshairs.js b/icons/uil-crosshairs.js index 68d4ea7f..9ccdd1a5 100644 --- a/icons/uil-crosshairs.js +++ b/icons/uil-crosshairs.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCrosshairs = (props) => { - const { color, size, ...otherProps } = props +const UilCrosshairs = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCrosshairs.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCrosshairs.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCrosshairs; \ No newline at end of file diff --git a/icons/uil-css3-simple.js b/icons/uil-css3-simple.js index eb9e89c7..2651a794 100644 --- a/icons/uil-css3-simple.js +++ b/icons/uil-css3-simple.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCss3Simple = (props) => { - const { color, size, ...otherProps } = props +const UilCss3Simple = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCss3Simple.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCss3Simple.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCss3Simple; \ No newline at end of file diff --git a/icons/uil-cube.js b/icons/uil-cube.js index b67dc28e..837baa40 100644 --- a/icons/uil-cube.js +++ b/icons/uil-cube.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilCube = (props) => { - const { color, size, ...otherProps } = props +const UilCube = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilCube.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilCube.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilCube; \ No newline at end of file diff --git a/icons/uil-dashboard.js b/icons/uil-dashboard.js index e38b73c9..327480e3 100644 --- a/icons/uil-dashboard.js +++ b/icons/uil-dashboard.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDashboard = (props) => { - const { color, size, ...otherProps } = props +const UilDashboard = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDashboard.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDashboard.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDashboard; \ No newline at end of file diff --git a/icons/uil-data-sharing.js b/icons/uil-data-sharing.js index 31641173..909f902f 100644 --- a/icons/uil-data-sharing.js +++ b/icons/uil-data-sharing.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDataSharing = (props) => { - const { color, size, ...otherProps } = props +const UilDataSharing = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDataSharing.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDataSharing.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDataSharing; \ No newline at end of file diff --git a/icons/uil-database-alt.js b/icons/uil-database-alt.js index f211049e..d9bdae0d 100644 --- a/icons/uil-database-alt.js +++ b/icons/uil-database-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDatabaseAlt = (props) => { - const { color, size, ...otherProps } = props +const UilDatabaseAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDatabaseAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDatabaseAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDatabaseAlt; \ No newline at end of file diff --git a/icons/uil-database.js b/icons/uil-database.js index 708a2cce..e11c36ce 100644 --- a/icons/uil-database.js +++ b/icons/uil-database.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDatabase = (props) => { - const { color, size, ...otherProps } = props +const UilDatabase = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDatabase.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDatabase.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDatabase; \ No newline at end of file diff --git a/icons/uil-desert.js b/icons/uil-desert.js index d779ee8a..daa40b22 100644 --- a/icons/uil-desert.js +++ b/icons/uil-desert.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDesert = (props) => { - const { color, size, ...otherProps } = props +const UilDesert = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDesert.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDesert.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDesert; \ No newline at end of file diff --git a/icons/uil-desktop-alt-slash.js b/icons/uil-desktop-alt-slash.js index f860e371..8ce42eeb 100644 --- a/icons/uil-desktop-alt-slash.js +++ b/icons/uil-desktop-alt-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDesktopAltSlash = (props) => { - const { color, size, ...otherProps } = props +const UilDesktopAltSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDesktopAltSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDesktopAltSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDesktopAltSlash; \ No newline at end of file diff --git a/icons/uil-desktop-alt.js b/icons/uil-desktop-alt.js index c4cf4135..932cec34 100644 --- a/icons/uil-desktop-alt.js +++ b/icons/uil-desktop-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDesktopAlt = (props) => { - const { color, size, ...otherProps } = props +const UilDesktopAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDesktopAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDesktopAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDesktopAlt; \ No newline at end of file diff --git a/icons/uil-desktop-cloud-alt.js b/icons/uil-desktop-cloud-alt.js index 00386f40..b8db254e 100644 --- a/icons/uil-desktop-cloud-alt.js +++ b/icons/uil-desktop-cloud-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDesktopCloudAlt = (props) => { - const { color, size, ...otherProps } = props +const UilDesktopCloudAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDesktopCloudAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDesktopCloudAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDesktopCloudAlt; \ No newline at end of file diff --git a/icons/uil-desktop-slash.js b/icons/uil-desktop-slash.js index 424dc06a..ca52f6cd 100644 --- a/icons/uil-desktop-slash.js +++ b/icons/uil-desktop-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDesktopSlash = (props) => { - const { color, size, ...otherProps } = props +const UilDesktopSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDesktopSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDesktopSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDesktopSlash; \ No newline at end of file diff --git a/icons/uil-desktop.js b/icons/uil-desktop.js index 4fdce928..95beffee 100644 --- a/icons/uil-desktop.js +++ b/icons/uil-desktop.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDesktop = (props) => { - const { color, size, ...otherProps } = props +const UilDesktop = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDesktop.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDesktop.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDesktop; \ No newline at end of file diff --git a/icons/uil-dialpad-alt.js b/icons/uil-dialpad-alt.js index df6d9dd5..ace0c62a 100644 --- a/icons/uil-dialpad-alt.js +++ b/icons/uil-dialpad-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDialpadAlt = (props) => { - const { color, size, ...otherProps } = props +const UilDialpadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDialpadAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDialpadAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDialpadAlt; \ No newline at end of file diff --git a/icons/uil-dialpad.js b/icons/uil-dialpad.js index 70500350..3fbe2917 100644 --- a/icons/uil-dialpad.js +++ b/icons/uil-dialpad.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDialpad = (props) => { - const { color, size, ...otherProps } = props +const UilDialpad = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDialpad.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDialpad.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDialpad; \ No newline at end of file diff --git a/icons/uil-diamond.js b/icons/uil-diamond.js index f0688024..ae6140cc 100644 --- a/icons/uil-diamond.js +++ b/icons/uil-diamond.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDiamond = (props) => { - const { color, size, ...otherProps } = props +const UilDiamond = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDiamond.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDiamond.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDiamond; \ No newline at end of file diff --git a/icons/uil-diary-alt.js b/icons/uil-diary-alt.js index 29568ffb..7833850c 100644 --- a/icons/uil-diary-alt.js +++ b/icons/uil-diary-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDiaryAlt = (props) => { - const { color, size, ...otherProps } = props +const UilDiaryAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDiaryAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDiaryAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDiaryAlt; \ No newline at end of file diff --git a/icons/uil-diary.js b/icons/uil-diary.js index e398c4c0..7b40533d 100644 --- a/icons/uil-diary.js +++ b/icons/uil-diary.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDiary = (props) => { - const { color, size, ...otherProps } = props +const UilDiary = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDiary.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDiary.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDiary; \ No newline at end of file diff --git a/icons/uil-dice-five.js b/icons/uil-dice-five.js index 97f4b465..104a6c74 100644 --- a/icons/uil-dice-five.js +++ b/icons/uil-dice-five.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDiceFive = (props) => { - const { color, size, ...otherProps } = props +const UilDiceFive = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDiceFive.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDiceFive.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDiceFive; \ No newline at end of file diff --git a/icons/uil-dice-four.js b/icons/uil-dice-four.js index 8a7c1d27..456711dc 100644 --- a/icons/uil-dice-four.js +++ b/icons/uil-dice-four.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDiceFour = (props) => { - const { color, size, ...otherProps } = props +const UilDiceFour = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDiceFour.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDiceFour.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDiceFour; \ No newline at end of file diff --git a/icons/uil-dice-one.js b/icons/uil-dice-one.js index ec47b088..9d26d4be 100644 --- a/icons/uil-dice-one.js +++ b/icons/uil-dice-one.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDiceOne = (props) => { - const { color, size, ...otherProps } = props +const UilDiceOne = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDiceOne.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDiceOne.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDiceOne; \ No newline at end of file diff --git a/icons/uil-dice-six.js b/icons/uil-dice-six.js index 6fdbee7a..0f721d6c 100644 --- a/icons/uil-dice-six.js +++ b/icons/uil-dice-six.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDiceSix = (props) => { - const { color, size, ...otherProps } = props +const UilDiceSix = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDiceSix.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDiceSix.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDiceSix; \ No newline at end of file diff --git a/icons/uil-dice-three.js b/icons/uil-dice-three.js index d0c21160..fe0bbbec 100644 --- a/icons/uil-dice-three.js +++ b/icons/uil-dice-three.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDiceThree = (props) => { - const { color, size, ...otherProps } = props +const UilDiceThree = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDiceThree.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDiceThree.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDiceThree; \ No newline at end of file diff --git a/icons/uil-dice-two.js b/icons/uil-dice-two.js index 632f33f6..a890c239 100644 --- a/icons/uil-dice-two.js +++ b/icons/uil-dice-two.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDiceTwo = (props) => { - const { color, size, ...otherProps } = props +const UilDiceTwo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDiceTwo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDiceTwo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDiceTwo; \ No newline at end of file diff --git a/icons/uil-direction.js b/icons/uil-direction.js index 4efa7f44..108aaca4 100644 --- a/icons/uil-direction.js +++ b/icons/uil-direction.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDirection = (props) => { - const { color, size, ...otherProps } = props +const UilDirection = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDirection.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDirection.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDirection; \ No newline at end of file diff --git a/icons/uil-directions.js b/icons/uil-directions.js index 4b92982e..5a43956d 100644 --- a/icons/uil-directions.js +++ b/icons/uil-directions.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDirections = (props) => { - const { color, size, ...otherProps } = props +const UilDirections = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDirections.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDirections.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDirections; \ No newline at end of file diff --git a/icons/uil-discord.js b/icons/uil-discord.js index 63eaee45..cbc4f1bf 100644 --- a/icons/uil-discord.js +++ b/icons/uil-discord.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDiscord = (props) => { - const { color, size, ...otherProps } = props +const UilDiscord = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDiscord.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDiscord.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDiscord; \ No newline at end of file diff --git a/icons/uil-dizzy-meh.js b/icons/uil-dizzy-meh.js index 3b280e16..22360436 100644 --- a/icons/uil-dizzy-meh.js +++ b/icons/uil-dizzy-meh.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDizzyMeh = (props) => { - const { color, size, ...otherProps } = props +const UilDizzyMeh = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDizzyMeh.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDizzyMeh.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDizzyMeh; \ No newline at end of file diff --git a/icons/uil-dna.js b/icons/uil-dna.js index 19696325..24296c6c 100644 --- a/icons/uil-dna.js +++ b/icons/uil-dna.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDna = (props) => { - const { color, size, ...otherProps } = props +const UilDna = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDna.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDna.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDna; \ No newline at end of file diff --git a/icons/uil-docker.js b/icons/uil-docker.js index 8909c0a2..dbd4179a 100644 --- a/icons/uil-docker.js +++ b/icons/uil-docker.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDocker = (props) => { - const { color, size, ...otherProps } = props +const UilDocker = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDocker.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDocker.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDocker; \ No newline at end of file diff --git a/icons/uil-document-info.js b/icons/uil-document-info.js index 4ef76eef..9014a64c 100644 --- a/icons/uil-document-info.js +++ b/icons/uil-document-info.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDocumentInfo = (props) => { - const { color, size, ...otherProps } = props +const UilDocumentInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDocumentInfo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDocumentInfo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDocumentInfo; \ No newline at end of file diff --git a/icons/uil-document-layout-center.js b/icons/uil-document-layout-center.js index 49f92867..d351f9ff 100644 --- a/icons/uil-document-layout-center.js +++ b/icons/uil-document-layout-center.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDocumentLayoutCenter = (props) => { - const { color, size, ...otherProps } = props +const UilDocumentLayoutCenter = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDocumentLayoutCenter.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDocumentLayoutCenter.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDocumentLayoutCenter; \ No newline at end of file diff --git a/icons/uil-document-layout-left.js b/icons/uil-document-layout-left.js index f7b9e9d1..1c45b822 100644 --- a/icons/uil-document-layout-left.js +++ b/icons/uil-document-layout-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDocumentLayoutLeft = (props) => { - const { color, size, ...otherProps } = props +const UilDocumentLayoutLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDocumentLayoutLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDocumentLayoutLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDocumentLayoutLeft; \ No newline at end of file diff --git a/icons/uil-document-layout-right.js b/icons/uil-document-layout-right.js index f587925a..5b928d1b 100644 --- a/icons/uil-document-layout-right.js +++ b/icons/uil-document-layout-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDocumentLayoutRight = (props) => { - const { color, size, ...otherProps } = props +const UilDocumentLayoutRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDocumentLayoutRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDocumentLayoutRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDocumentLayoutRight; \ No newline at end of file diff --git a/icons/uil-dollar-alt.js b/icons/uil-dollar-alt.js index b0b041f5..117c08ca 100644 --- a/icons/uil-dollar-alt.js +++ b/icons/uil-dollar-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDollarAlt = (props) => { - const { color, size, ...otherProps } = props +const UilDollarAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDollarAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDollarAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDollarAlt; \ No newline at end of file diff --git a/icons/uil-dollar-sign-alt.js b/icons/uil-dollar-sign-alt.js index 5dff9172..a18a60a6 100644 --- a/icons/uil-dollar-sign-alt.js +++ b/icons/uil-dollar-sign-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDollarSignAlt = (props) => { - const { color, size, ...otherProps } = props +const UilDollarSignAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDollarSignAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDollarSignAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDollarSignAlt; \ No newline at end of file diff --git a/icons/uil-dollar-sign.js b/icons/uil-dollar-sign.js index dfaa71af..f1c62e74 100644 --- a/icons/uil-dollar-sign.js +++ b/icons/uil-dollar-sign.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDollarSign = (props) => { - const { color, size, ...otherProps } = props +const UilDollarSign = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDollarSign.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDollarSign.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDollarSign; \ No newline at end of file diff --git a/icons/uil-download-alt.js b/icons/uil-download-alt.js index b3dc528c..3e1b8d40 100644 --- a/icons/uil-download-alt.js +++ b/icons/uil-download-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDownloadAlt = (props) => { - const { color, size, ...otherProps } = props +const UilDownloadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDownloadAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDownloadAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDownloadAlt; \ No newline at end of file diff --git a/icons/uil-draggabledots.js b/icons/uil-draggabledots.js index 48422f8e..3e8359be 100644 --- a/icons/uil-draggabledots.js +++ b/icons/uil-draggabledots.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDraggabledots = (props) => { - const { color, size, ...otherProps } = props +const UilDraggabledots = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDraggabledots.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDraggabledots.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDraggabledots; \ No newline at end of file diff --git a/icons/uil-dribbble.js b/icons/uil-dribbble.js index 4d2d1910..7dfacd44 100644 --- a/icons/uil-dribbble.js +++ b/icons/uil-dribbble.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDribbble = (props) => { - const { color, size, ...otherProps } = props +const UilDribbble = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDribbble.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDribbble.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDribbble; \ No newline at end of file diff --git a/icons/uil-drill.js b/icons/uil-drill.js index 3ce8716e..87561f19 100644 --- a/icons/uil-drill.js +++ b/icons/uil-drill.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDrill = (props) => { - const { color, size, ...otherProps } = props +const UilDrill = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDrill.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDrill.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDrill; \ No newline at end of file diff --git a/icons/uil-dropbox.js b/icons/uil-dropbox.js index d0626213..5249fd64 100644 --- a/icons/uil-dropbox.js +++ b/icons/uil-dropbox.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDropbox = (props) => { - const { color, size, ...otherProps } = props +const UilDropbox = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDropbox.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDropbox.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDropbox; \ No newline at end of file diff --git a/icons/uil-dumbbell.js b/icons/uil-dumbbell.js index ca9ba057..efb6da37 100644 --- a/icons/uil-dumbbell.js +++ b/icons/uil-dumbbell.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilDumbbell = (props) => { - const { color, size, ...otherProps } = props +const UilDumbbell = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilDumbbell.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilDumbbell.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilDumbbell; \ No newline at end of file diff --git a/icons/uil-ear.js b/icons/uil-ear.js index 78430771..12aba389 100644 --- a/icons/uil-ear.js +++ b/icons/uil-ear.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEar = (props) => { - const { color, size, ...otherProps } = props +const UilEar = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEar.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEar.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEar; \ No newline at end of file diff --git a/icons/uil-edit-alt.js b/icons/uil-edit-alt.js index 98770e65..e05fa9ea 100644 --- a/icons/uil-edit-alt.js +++ b/icons/uil-edit-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEditAlt = (props) => { - const { color, size, ...otherProps } = props +const UilEditAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEditAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEditAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEditAlt; \ No newline at end of file diff --git a/icons/uil-edit.js b/icons/uil-edit.js index b539ac13..ad1e6e75 100644 --- a/icons/uil-edit.js +++ b/icons/uil-edit.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEdit = (props) => { - const { color, size, ...otherProps } = props +const UilEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEdit.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEdit.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEdit; \ No newline at end of file diff --git a/icons/uil-elipsis-double-v-alt.js b/icons/uil-elipsis-double-v-alt.js index eab25ae5..ee5b38a2 100644 --- a/icons/uil-elipsis-double-v-alt.js +++ b/icons/uil-elipsis-double-v-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilElipsisDoubleVAlt = (props) => { - const { color, size, ...otherProps } = props +const UilElipsisDoubleVAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilElipsisDoubleVAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilElipsisDoubleVAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilElipsisDoubleVAlt; \ No newline at end of file diff --git a/icons/uil-ellipsis-h.js b/icons/uil-ellipsis-h.js index 7272a9f7..3e59ff43 100644 --- a/icons/uil-ellipsis-h.js +++ b/icons/uil-ellipsis-h.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEllipsisH = (props) => { - const { color, size, ...otherProps } = props +const UilEllipsisH = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEllipsisH.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEllipsisH.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEllipsisH; \ No newline at end of file diff --git a/icons/uil-ellipsis-v.js b/icons/uil-ellipsis-v.js index 6fbb12a3..c9edfce6 100644 --- a/icons/uil-ellipsis-v.js +++ b/icons/uil-ellipsis-v.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEllipsisV = (props) => { - const { color, size, ...otherProps } = props +const UilEllipsisV = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEllipsisV.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEllipsisV.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEllipsisV; \ No newline at end of file diff --git a/icons/uil-emoji.js b/icons/uil-emoji.js index 58b2517b..16a91b98 100644 --- a/icons/uil-emoji.js +++ b/icons/uil-emoji.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEmoji = (props) => { - const { color, size, ...otherProps } = props +const UilEmoji = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEmoji.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEmoji.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEmoji; \ No newline at end of file diff --git a/icons/uil-english-to-chinese.js b/icons/uil-english-to-chinese.js index be89955b..24afccaf 100644 --- a/icons/uil-english-to-chinese.js +++ b/icons/uil-english-to-chinese.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnglishToChinese = (props) => { - const { color, size, ...otherProps } = props +const UilEnglishToChinese = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnglishToChinese.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnglishToChinese.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnglishToChinese; \ No newline at end of file diff --git a/icons/uil-enter.js b/icons/uil-enter.js index 29ea7d9f..32c38b58 100644 --- a/icons/uil-enter.js +++ b/icons/uil-enter.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnter = (props) => { - const { color, size, ...otherProps } = props +const UilEnter = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnter.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnter.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnter; \ No newline at end of file diff --git a/icons/uil-envelope-add.js b/icons/uil-envelope-add.js index 0dfeef65..6e54617c 100644 --- a/icons/uil-envelope-add.js +++ b/icons/uil-envelope-add.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeAdd = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeAdd.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeAdd.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeAdd; \ No newline at end of file diff --git a/icons/uil-envelope-alt.js b/icons/uil-envelope-alt.js index cb80fe91..8ef107b6 100644 --- a/icons/uil-envelope-alt.js +++ b/icons/uil-envelope-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeAlt = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeAlt; \ No newline at end of file diff --git a/icons/uil-envelope-block.js b/icons/uil-envelope-block.js index abc1382a..4cdc07d6 100644 --- a/icons/uil-envelope-block.js +++ b/icons/uil-envelope-block.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeBlock = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeBlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeBlock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeBlock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeBlock; \ No newline at end of file diff --git a/icons/uil-envelope-bookmark.js b/icons/uil-envelope-bookmark.js index 35f715e4..20edfe97 100644 --- a/icons/uil-envelope-bookmark.js +++ b/icons/uil-envelope-bookmark.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeBookmark = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeBookmark = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeBookmark.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeBookmark.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeBookmark; \ No newline at end of file diff --git a/icons/uil-envelope-check.js b/icons/uil-envelope-check.js index 2279ceda..f4578c71 100644 --- a/icons/uil-envelope-check.js +++ b/icons/uil-envelope-check.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeCheck = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeCheck.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeCheck.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeCheck; \ No newline at end of file diff --git a/icons/uil-envelope-download-alt.js b/icons/uil-envelope-download-alt.js index ce1eff1d..45a2fa9e 100644 --- a/icons/uil-envelope-download-alt.js +++ b/icons/uil-envelope-download-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeDownloadAlt = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeDownloadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeDownloadAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeDownloadAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeDownloadAlt; \ No newline at end of file diff --git a/icons/uil-envelope-download.js b/icons/uil-envelope-download.js index 046c95b5..332241fc 100644 --- a/icons/uil-envelope-download.js +++ b/icons/uil-envelope-download.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeDownload = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeDownload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeDownload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeDownload; \ No newline at end of file diff --git a/icons/uil-envelope-edit.js b/icons/uil-envelope-edit.js index 87cb0495..dca81930 100644 --- a/icons/uil-envelope-edit.js +++ b/icons/uil-envelope-edit.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeEdit = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeEdit.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeEdit.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeEdit; \ No newline at end of file diff --git a/icons/uil-envelope-exclamation.js b/icons/uil-envelope-exclamation.js index b59be560..faca82f1 100644 --- a/icons/uil-envelope-exclamation.js +++ b/icons/uil-envelope-exclamation.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeExclamation = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeExclamation.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeExclamation.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeExclamation; \ No newline at end of file diff --git a/icons/uil-envelope-heart.js b/icons/uil-envelope-heart.js index 716757bb..c2a74c7f 100644 --- a/icons/uil-envelope-heart.js +++ b/icons/uil-envelope-heart.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeHeart = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeHeart.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeHeart.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeHeart; \ No newline at end of file diff --git a/icons/uil-envelope-info.js b/icons/uil-envelope-info.js index 381e9fed..c2d923ff 100644 --- a/icons/uil-envelope-info.js +++ b/icons/uil-envelope-info.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeInfo = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeInfo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeInfo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeInfo; \ No newline at end of file diff --git a/icons/uil-envelope-lock.js b/icons/uil-envelope-lock.js index fddaac61..b5988707 100644 --- a/icons/uil-envelope-lock.js +++ b/icons/uil-envelope-lock.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeLock = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeLock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeLock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeLock; \ No newline at end of file diff --git a/icons/uil-envelope-minus.js b/icons/uil-envelope-minus.js index 005f65ca..b5ac4864 100644 --- a/icons/uil-envelope-minus.js +++ b/icons/uil-envelope-minus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeMinus = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeMinus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeMinus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeMinus; \ No newline at end of file diff --git a/icons/uil-envelope-open.js b/icons/uil-envelope-open.js index 7864b04f..444dff1d 100644 --- a/icons/uil-envelope-open.js +++ b/icons/uil-envelope-open.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeOpen = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeOpen = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeOpen.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeOpen.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeOpen; \ No newline at end of file diff --git a/icons/uil-envelope-question.js b/icons/uil-envelope-question.js index ceb85fda..b20d49ad 100644 --- a/icons/uil-envelope-question.js +++ b/icons/uil-envelope-question.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeQuestion = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeQuestion.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeQuestion.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeQuestion; \ No newline at end of file diff --git a/icons/uil-envelope-receive.js b/icons/uil-envelope-receive.js index 3a2d5e60..84df16c8 100644 --- a/icons/uil-envelope-receive.js +++ b/icons/uil-envelope-receive.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeReceive = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeReceive = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeReceive.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeReceive.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeReceive; \ No newline at end of file diff --git a/icons/uil-envelope-redo.js b/icons/uil-envelope-redo.js index f58054c4..6b0379e5 100644 --- a/icons/uil-envelope-redo.js +++ b/icons/uil-envelope-redo.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeRedo = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeRedo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeRedo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeRedo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeRedo; \ No newline at end of file diff --git a/icons/uil-envelope-search.js b/icons/uil-envelope-search.js index 33f31e46..11c1d391 100644 --- a/icons/uil-envelope-search.js +++ b/icons/uil-envelope-search.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeSearch = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeSearch = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeSearch.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeSearch.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeSearch; \ No newline at end of file diff --git a/icons/uil-envelope-send.js b/icons/uil-envelope-send.js index 7cc177ba..c06840a8 100644 --- a/icons/uil-envelope-send.js +++ b/icons/uil-envelope-send.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeSend = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeSend = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeSend.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeSend.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeSend; \ No newline at end of file diff --git a/icons/uil-envelope-share.js b/icons/uil-envelope-share.js index eef4ee15..05713585 100644 --- a/icons/uil-envelope-share.js +++ b/icons/uil-envelope-share.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeShare = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeShare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeShare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeShare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeShare; \ No newline at end of file diff --git a/icons/uil-envelope-shield.js b/icons/uil-envelope-shield.js index 6b28b41f..c08cd456 100644 --- a/icons/uil-envelope-shield.js +++ b/icons/uil-envelope-shield.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeShield = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeShield.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeShield.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeShield; \ No newline at end of file diff --git a/icons/uil-envelope-star.js b/icons/uil-envelope-star.js index 7923596f..ce0a2761 100644 --- a/icons/uil-envelope-star.js +++ b/icons/uil-envelope-star.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeStar = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeStar = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeStar.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeStar.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeStar; \ No newline at end of file diff --git a/icons/uil-envelope-times.js b/icons/uil-envelope-times.js index 87308b67..c239e1c3 100644 --- a/icons/uil-envelope-times.js +++ b/icons/uil-envelope-times.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeTimes = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeTimes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeTimes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeTimes; \ No newline at end of file diff --git a/icons/uil-envelope-upload-alt.js b/icons/uil-envelope-upload-alt.js index 4add4467..badb0429 100644 --- a/icons/uil-envelope-upload-alt.js +++ b/icons/uil-envelope-upload-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeUploadAlt = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeUploadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeUploadAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeUploadAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeUploadAlt; \ No newline at end of file diff --git a/icons/uil-envelope-upload.js b/icons/uil-envelope-upload.js index a67de350..3db01679 100644 --- a/icons/uil-envelope-upload.js +++ b/icons/uil-envelope-upload.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopeUpload = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopeUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopeUpload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopeUpload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopeUpload; \ No newline at end of file diff --git a/icons/uil-envelope.js b/icons/uil-envelope.js index f3206c3a..dde8c1d9 100644 --- a/icons/uil-envelope.js +++ b/icons/uil-envelope.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelope = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelope = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelope.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelope.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelope; \ No newline at end of file diff --git a/icons/uil-envelopes.js b/icons/uil-envelopes.js index a7340df7..ac811047 100644 --- a/icons/uil-envelopes.js +++ b/icons/uil-envelopes.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEnvelopes = (props) => { - const { color, size, ...otherProps } = props +const UilEnvelopes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEnvelopes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEnvelopes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEnvelopes; \ No newline at end of file diff --git a/icons/uil-equal-circle.js b/icons/uil-equal-circle.js index 7cf1759d..f6cffb04 100644 --- a/icons/uil-equal-circle.js +++ b/icons/uil-equal-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEqualCircle = (props) => { - const { color, size, ...otherProps } = props +const UilEqualCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEqualCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEqualCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEqualCircle; \ No newline at end of file diff --git a/icons/uil-estate.js b/icons/uil-estate.js index a967a86d..5a9e575e 100644 --- a/icons/uil-estate.js +++ b/icons/uil-estate.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEstate = (props) => { - const { color, size, ...otherProps } = props +const UilEstate = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEstate.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEstate.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEstate; \ No newline at end of file diff --git a/icons/uil-euro-circle.js b/icons/uil-euro-circle.js index 6382bf8c..32ba504a 100644 --- a/icons/uil-euro-circle.js +++ b/icons/uil-euro-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEuroCircle = (props) => { - const { color, size, ...otherProps } = props +const UilEuroCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEuroCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEuroCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEuroCircle; \ No newline at end of file diff --git a/icons/uil-euro.js b/icons/uil-euro.js index f32a1d80..fe8963ac 100644 --- a/icons/uil-euro.js +++ b/icons/uil-euro.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEuro = (props) => { - const { color, size, ...otherProps } = props +const UilEuro = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEuro.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEuro.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEuro; \ No newline at end of file diff --git a/icons/uil-exchange-alt.js b/icons/uil-exchange-alt.js index 0808bae5..50e5221e 100644 --- a/icons/uil-exchange-alt.js +++ b/icons/uil-exchange-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExchangeAlt = (props) => { - const { color, size, ...otherProps } = props +const UilExchangeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExchangeAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExchangeAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExchangeAlt; \ No newline at end of file diff --git a/icons/uil-exchange.js b/icons/uil-exchange.js index 9ec689ab..a9d7ae52 100644 --- a/icons/uil-exchange.js +++ b/icons/uil-exchange.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExchange = (props) => { - const { color, size, ...otherProps } = props +const UilExchange = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExchange.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExchange.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExchange; \ No newline at end of file diff --git a/icons/uil-exclamation-circle.js b/icons/uil-exclamation-circle.js index cd5ee3ea..b715284d 100644 --- a/icons/uil-exclamation-circle.js +++ b/icons/uil-exclamation-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExclamationCircle = (props) => { - const { color, size, ...otherProps } = props +const UilExclamationCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExclamationCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExclamationCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExclamationCircle; \ No newline at end of file diff --git a/icons/uil-exclamation-octagon.js b/icons/uil-exclamation-octagon.js index 9a3ce05a..c1b8c165 100644 --- a/icons/uil-exclamation-octagon.js +++ b/icons/uil-exclamation-octagon.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExclamationOctagon = (props) => { - const { color, size, ...otherProps } = props +const UilExclamationOctagon = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExclamationOctagon.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExclamationOctagon.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExclamationOctagon; \ No newline at end of file diff --git a/icons/uil-exclamation-triangle.js b/icons/uil-exclamation-triangle.js index a89bfb41..ca0620ba 100644 --- a/icons/uil-exclamation-triangle.js +++ b/icons/uil-exclamation-triangle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExclamationTriangle = (props) => { - const { color, size, ...otherProps } = props +const UilExclamationTriangle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExclamationTriangle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExclamationTriangle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExclamationTriangle; \ No newline at end of file diff --git a/icons/uil-exclamation.js b/icons/uil-exclamation.js index f7169675..f0ba797a 100644 --- a/icons/uil-exclamation.js +++ b/icons/uil-exclamation.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExclamation = (props) => { - const { color, size, ...otherProps } = props +const UilExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExclamation.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExclamation.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExclamation; \ No newline at end of file diff --git a/icons/uil-exclude.js b/icons/uil-exclude.js index e4b49b0f..a5aad014 100644 --- a/icons/uil-exclude.js +++ b/icons/uil-exclude.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExclude = (props) => { - const { color, size, ...otherProps } = props +const UilExclude = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExclude.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExclude.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExclude; \ No newline at end of file diff --git a/icons/uil-expand-alt.js b/icons/uil-expand-alt.js index d4077ca6..a4cb4170 100644 --- a/icons/uil-expand-alt.js +++ b/icons/uil-expand-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExpandAlt = (props) => { - const { color, size, ...otherProps } = props +const UilExpandAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExpandAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExpandAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExpandAlt; \ No newline at end of file diff --git a/icons/uil-expand-arrows-alt.js b/icons/uil-expand-arrows-alt.js index 6abaa029..ef3375dc 100644 --- a/icons/uil-expand-arrows-alt.js +++ b/icons/uil-expand-arrows-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExpandArrowsAlt = (props) => { - const { color, size, ...otherProps } = props +const UilExpandArrowsAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExpandArrowsAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExpandArrowsAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExpandArrowsAlt; \ No newline at end of file diff --git a/icons/uil-expand-arrows.js b/icons/uil-expand-arrows.js index 3fd86438..571cf2ed 100644 --- a/icons/uil-expand-arrows.js +++ b/icons/uil-expand-arrows.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExpandArrows = (props) => { - const { color, size, ...otherProps } = props +const UilExpandArrows = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExpandArrows.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExpandArrows.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExpandArrows; \ No newline at end of file diff --git a/icons/uil-expand-from-corner.js b/icons/uil-expand-from-corner.js index fe7c328e..7525a0ff 100644 --- a/icons/uil-expand-from-corner.js +++ b/icons/uil-expand-from-corner.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExpandFromCorner = (props) => { - const { color, size, ...otherProps } = props +const UilExpandFromCorner = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExpandFromCorner.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExpandFromCorner.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExpandFromCorner; \ No newline at end of file diff --git a/icons/uil-expand-left.js b/icons/uil-expand-left.js index d378e3bb..c18a051a 100644 --- a/icons/uil-expand-left.js +++ b/icons/uil-expand-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExpandLeft = (props) => { - const { color, size, ...otherProps } = props +const UilExpandLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExpandLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExpandLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExpandLeft; \ No newline at end of file diff --git a/icons/uil-expand-right.js b/icons/uil-expand-right.js index ccaf7418..f4454143 100644 --- a/icons/uil-expand-right.js +++ b/icons/uil-expand-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExpandRight = (props) => { - const { color, size, ...otherProps } = props +const UilExpandRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExpandRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExpandRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExpandRight; \ No newline at end of file diff --git a/icons/uil-export.js b/icons/uil-export.js index 1d1ff25d..712535a6 100644 --- a/icons/uil-export.js +++ b/icons/uil-export.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExport = (props) => { - const { color, size, ...otherProps } = props +const UilExport = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExport.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExport.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExport; \ No newline at end of file diff --git a/icons/uil-exposure-alt.js b/icons/uil-exposure-alt.js index cf60cf8d..5bd53aaa 100644 --- a/icons/uil-exposure-alt.js +++ b/icons/uil-exposure-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExposureAlt = (props) => { - const { color, size, ...otherProps } = props +const UilExposureAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExposureAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExposureAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExposureAlt; \ No newline at end of file diff --git a/icons/uil-exposure-increase.js b/icons/uil-exposure-increase.js index 69c75af3..80374887 100644 --- a/icons/uil-exposure-increase.js +++ b/icons/uil-exposure-increase.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExposureIncrease = (props) => { - const { color, size, ...otherProps } = props +const UilExposureIncrease = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExposureIncrease.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExposureIncrease.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExposureIncrease; \ No newline at end of file diff --git a/icons/uil-external-link-alt.js b/icons/uil-external-link-alt.js index f3d23547..5ff85de3 100644 --- a/icons/uil-external-link-alt.js +++ b/icons/uil-external-link-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilExternalLinkAlt = (props) => { - const { color, size, ...otherProps } = props +const UilExternalLinkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilExternalLinkAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilExternalLinkAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilExternalLinkAlt; \ No newline at end of file diff --git a/icons/uil-eye-slash.js b/icons/uil-eye-slash.js index 5528cdfe..3b458260 100644 --- a/icons/uil-eye-slash.js +++ b/icons/uil-eye-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEyeSlash = (props) => { - const { color, size, ...otherProps } = props +const UilEyeSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEyeSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEyeSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEyeSlash; \ No newline at end of file diff --git a/icons/uil-eye.js b/icons/uil-eye.js index 0e9af2fd..fa1d815d 100644 --- a/icons/uil-eye.js +++ b/icons/uil-eye.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilEye = (props) => { - const { color, size, ...otherProps } = props +const UilEye = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilEye.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilEye.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilEye; \ No newline at end of file diff --git a/icons/uil-facebook-f.js b/icons/uil-facebook-f.js index dc57bdaa..016d9169 100644 --- a/icons/uil-facebook-f.js +++ b/icons/uil-facebook-f.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFacebookF = (props) => { - const { color, size, ...otherProps } = props +const UilFacebookF = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFacebookF.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFacebookF.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFacebookF; \ No newline at end of file diff --git a/icons/uil-facebook-messenger-alt.js b/icons/uil-facebook-messenger-alt.js index 125ccaa4..73698ee5 100644 --- a/icons/uil-facebook-messenger-alt.js +++ b/icons/uil-facebook-messenger-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFacebookMessengerAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFacebookMessengerAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFacebookMessengerAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFacebookMessengerAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFacebookMessengerAlt; \ No newline at end of file diff --git a/icons/uil-facebook-messenger.js b/icons/uil-facebook-messenger.js index a43a87ad..7902d408 100644 --- a/icons/uil-facebook-messenger.js +++ b/icons/uil-facebook-messenger.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFacebookMessenger = (props) => { - const { color, size, ...otherProps } = props +const UilFacebookMessenger = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFacebookMessenger.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFacebookMessenger.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFacebookMessenger; \ No newline at end of file diff --git a/icons/uil-facebook.js b/icons/uil-facebook.js index d3c09bbe..76a5f2e4 100644 --- a/icons/uil-facebook.js +++ b/icons/uil-facebook.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFacebook = (props) => { - const { color, size, ...otherProps } = props +const UilFacebook = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFacebook.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFacebook.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFacebook; \ No newline at end of file diff --git a/icons/uil-fahrenheit.js b/icons/uil-fahrenheit.js index aca9148e..440b31f5 100644 --- a/icons/uil-fahrenheit.js +++ b/icons/uil-fahrenheit.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFahrenheit = (props) => { - const { color, size, ...otherProps } = props +const UilFahrenheit = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFahrenheit.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFahrenheit.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFahrenheit; \ No newline at end of file diff --git a/icons/uil-fast-mail-alt.js b/icons/uil-fast-mail-alt.js index 485a38e7..7208d10b 100644 --- a/icons/uil-fast-mail-alt.js +++ b/icons/uil-fast-mail-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFastMailAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFastMailAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFastMailAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFastMailAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFastMailAlt; \ No newline at end of file diff --git a/icons/uil-fast-mail.js b/icons/uil-fast-mail.js index 24da7d8f..88a299ca 100644 --- a/icons/uil-fast-mail.js +++ b/icons/uil-fast-mail.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFastMail = (props) => { - const { color, size, ...otherProps } = props +const UilFastMail = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFastMail.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFastMail.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFastMail; \ No newline at end of file diff --git a/icons/uil-favorite.js b/icons/uil-favorite.js index c30797c6..54116908 100644 --- a/icons/uil-favorite.js +++ b/icons/uil-favorite.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFavorite = (props) => { - const { color, size, ...otherProps } = props +const UilFavorite = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFavorite.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFavorite.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFavorite; \ No newline at end of file diff --git a/icons/uil-feedback.js b/icons/uil-feedback.js index 672b25c1..0874f705 100644 --- a/icons/uil-feedback.js +++ b/icons/uil-feedback.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFeedback = (props) => { - const { color, size, ...otherProps } = props +const UilFeedback = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFeedback.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFeedback.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFeedback; \ No newline at end of file diff --git a/icons/uil-fidget-spinner.js b/icons/uil-fidget-spinner.js index ab710073..ea023571 100644 --- a/icons/uil-fidget-spinner.js +++ b/icons/uil-fidget-spinner.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFidgetSpinner = (props) => { - const { color, size, ...otherProps } = props +const UilFidgetSpinner = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFidgetSpinner.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFidgetSpinner.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFidgetSpinner; \ No newline at end of file diff --git a/icons/uil-file-alt.js b/icons/uil-file-alt.js index 0a83bcc7..cd8dcecf 100644 --- a/icons/uil-file-alt.js +++ b/icons/uil-file-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileAlt; \ No newline at end of file diff --git a/icons/uil-file-blank.js b/icons/uil-file-blank.js index 4dcdf2dd..0853d4a2 100644 --- a/icons/uil-file-blank.js +++ b/icons/uil-file-blank.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileBlank = (props) => { - const { color, size, ...otherProps } = props +const UilFileBlank = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileBlank.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileBlank.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileBlank; \ No newline at end of file diff --git a/icons/uil-file-block-alt.js b/icons/uil-file-block-alt.js index 6057ce59..704f38c5 100644 --- a/icons/uil-file-block-alt.js +++ b/icons/uil-file-block-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileBlockAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileBlockAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileBlockAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileBlockAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileBlockAlt; \ No newline at end of file diff --git a/icons/uil-file-bookmark-alt.js b/icons/uil-file-bookmark-alt.js index 4d561201..8a748eab 100644 --- a/icons/uil-file-bookmark-alt.js +++ b/icons/uil-file-bookmark-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileBookmarkAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileBookmarkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileBookmarkAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileBookmarkAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileBookmarkAlt; \ No newline at end of file diff --git a/icons/uil-file-check-alt.js b/icons/uil-file-check-alt.js index bed41a70..2807aea1 100644 --- a/icons/uil-file-check-alt.js +++ b/icons/uil-file-check-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileCheckAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileCheckAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileCheckAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileCheckAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileCheckAlt; \ No newline at end of file diff --git a/icons/uil-file-check.js b/icons/uil-file-check.js index e1dc129a..42a99f5d 100644 --- a/icons/uil-file-check.js +++ b/icons/uil-file-check.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileCheck = (props) => { - const { color, size, ...otherProps } = props +const UilFileCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileCheck.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileCheck.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileCheck; \ No newline at end of file diff --git a/icons/uil-file-contract-dollar.js b/icons/uil-file-contract-dollar.js index ca2bbbf1..406aedfb 100644 --- a/icons/uil-file-contract-dollar.js +++ b/icons/uil-file-contract-dollar.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileContractDollar = (props) => { - const { color, size, ...otherProps } = props +const UilFileContractDollar = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileContractDollar.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileContractDollar.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileContractDollar; \ No newline at end of file diff --git a/icons/uil-file-contract.js b/icons/uil-file-contract.js index 0aace8a5..541896e6 100644 --- a/icons/uil-file-contract.js +++ b/icons/uil-file-contract.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileContract = (props) => { - const { color, size, ...otherProps } = props +const UilFileContract = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileContract.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileContract.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileContract; \ No newline at end of file diff --git a/icons/uil-file-copy-alt.js b/icons/uil-file-copy-alt.js index 272b62d3..409fb326 100644 --- a/icons/uil-file-copy-alt.js +++ b/icons/uil-file-copy-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileCopyAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileCopyAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileCopyAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileCopyAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileCopyAlt; \ No newline at end of file diff --git a/icons/uil-file-download-alt.js b/icons/uil-file-download-alt.js index 7f596be9..456e0ff8 100644 --- a/icons/uil-file-download-alt.js +++ b/icons/uil-file-download-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileDownloadAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileDownloadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileDownloadAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileDownloadAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileDownloadAlt; \ No newline at end of file diff --git a/icons/uil-file-download.js b/icons/uil-file-download.js index dfa83a1a..7fc6ec69 100644 --- a/icons/uil-file-download.js +++ b/icons/uil-file-download.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileDownload = (props) => { - const { color, size, ...otherProps } = props +const UilFileDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileDownload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileDownload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileDownload; \ No newline at end of file diff --git a/icons/uil-file-edit-alt.js b/icons/uil-file-edit-alt.js index 7781be6b..c3ee714e 100644 --- a/icons/uil-file-edit-alt.js +++ b/icons/uil-file-edit-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileEditAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileEditAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileEditAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileEditAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileEditAlt; \ No newline at end of file diff --git a/icons/uil-file-exclamation-alt.js b/icons/uil-file-exclamation-alt.js index 7b6ace87..87130ebb 100644 --- a/icons/uil-file-exclamation-alt.js +++ b/icons/uil-file-exclamation-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileExclamationAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileExclamationAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileExclamationAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileExclamationAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileExclamationAlt; \ No newline at end of file diff --git a/icons/uil-file-exclamation.js b/icons/uil-file-exclamation.js index 22dcf782..48ea2893 100644 --- a/icons/uil-file-exclamation.js +++ b/icons/uil-file-exclamation.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileExclamation = (props) => { - const { color, size, ...otherProps } = props +const UilFileExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileExclamation.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileExclamation.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileExclamation; \ No newline at end of file diff --git a/icons/uil-file-export.js b/icons/uil-file-export.js index da6d16b9..bfb51f48 100644 --- a/icons/uil-file-export.js +++ b/icons/uil-file-export.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileExport = (props) => { - const { color, size, ...otherProps } = props +const UilFileExport = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileExport.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileExport.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileExport; \ No newline at end of file diff --git a/icons/uil-file-graph.js b/icons/uil-file-graph.js index c2921eba..0dc69a13 100644 --- a/icons/uil-file-graph.js +++ b/icons/uil-file-graph.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileGraph = (props) => { - const { color, size, ...otherProps } = props +const UilFileGraph = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileGraph.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileGraph.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileGraph; \ No newline at end of file diff --git a/icons/uil-file-heart.js b/icons/uil-file-heart.js index 994ba833..ae698421 100644 --- a/icons/uil-file-heart.js +++ b/icons/uil-file-heart.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileHeart = (props) => { - const { color, size, ...otherProps } = props +const UilFileHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileHeart.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileHeart.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileHeart; \ No newline at end of file diff --git a/icons/uil-file-import.js b/icons/uil-file-import.js index 47137365..a001aa80 100644 --- a/icons/uil-file-import.js +++ b/icons/uil-file-import.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileImport = (props) => { - const { color, size, ...otherProps } = props +const UilFileImport = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileImport.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileImport.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileImport; \ No newline at end of file diff --git a/icons/uil-file-info-alt.js b/icons/uil-file-info-alt.js index 82a952f2..113dd604 100644 --- a/icons/uil-file-info-alt.js +++ b/icons/uil-file-info-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileInfoAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileInfoAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileInfoAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileInfoAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileInfoAlt; \ No newline at end of file diff --git a/icons/uil-file-landscape-alt.js b/icons/uil-file-landscape-alt.js index 7a354ce1..1df1bfbd 100644 --- a/icons/uil-file-landscape-alt.js +++ b/icons/uil-file-landscape-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileLandscapeAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileLandscapeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileLandscapeAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileLandscapeAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileLandscapeAlt; \ No newline at end of file diff --git a/icons/uil-file-landscape.js b/icons/uil-file-landscape.js index b867b0c7..4c8ffdac 100644 --- a/icons/uil-file-landscape.js +++ b/icons/uil-file-landscape.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileLandscape = (props) => { - const { color, size, ...otherProps } = props +const UilFileLandscape = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileLandscape.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileLandscape.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileLandscape; \ No newline at end of file diff --git a/icons/uil-file-lanscape-slash.js b/icons/uil-file-lanscape-slash.js index 0a2c508b..afa99aa3 100644 --- a/icons/uil-file-lanscape-slash.js +++ b/icons/uil-file-lanscape-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileLanscapeSlash = (props) => { - const { color, size, ...otherProps } = props +const UilFileLanscapeSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileLanscapeSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileLanscapeSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileLanscapeSlash; \ No newline at end of file diff --git a/icons/uil-file-lock-alt.js b/icons/uil-file-lock-alt.js index d88abf44..dcafa902 100644 --- a/icons/uil-file-lock-alt.js +++ b/icons/uil-file-lock-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileLockAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileLockAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileLockAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileLockAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileLockAlt; \ No newline at end of file diff --git a/icons/uil-file-medical-alt.js b/icons/uil-file-medical-alt.js index fdecbe00..0112e7f6 100644 --- a/icons/uil-file-medical-alt.js +++ b/icons/uil-file-medical-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileMedicalAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileMedicalAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileMedicalAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileMedicalAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileMedicalAlt; \ No newline at end of file diff --git a/icons/uil-file-medical.js b/icons/uil-file-medical.js index 7fb72e32..16c5cfc0 100644 --- a/icons/uil-file-medical.js +++ b/icons/uil-file-medical.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileMedical = (props) => { - const { color, size, ...otherProps } = props +const UilFileMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileMedical.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileMedical.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileMedical; \ No newline at end of file diff --git a/icons/uil-file-minus-alt.js b/icons/uil-file-minus-alt.js index 252baa2c..5fae26cc 100644 --- a/icons/uil-file-minus-alt.js +++ b/icons/uil-file-minus-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileMinusAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileMinusAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileMinusAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileMinusAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileMinusAlt; \ No newline at end of file diff --git a/icons/uil-file-minus.js b/icons/uil-file-minus.js index d38acd59..19270d84 100644 --- a/icons/uil-file-minus.js +++ b/icons/uil-file-minus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileMinus = (props) => { - const { color, size, ...otherProps } = props +const UilFileMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileMinus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileMinus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileMinus; \ No newline at end of file diff --git a/icons/uil-file-network.js b/icons/uil-file-network.js index a89b0075..667c203d 100644 --- a/icons/uil-file-network.js +++ b/icons/uil-file-network.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileNetwork = (props) => { - const { color, size, ...otherProps } = props +const UilFileNetwork = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileNetwork.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileNetwork.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileNetwork; \ No newline at end of file diff --git a/icons/uil-file-plus-alt.js b/icons/uil-file-plus-alt.js index d1108104..eb55faf9 100644 --- a/icons/uil-file-plus-alt.js +++ b/icons/uil-file-plus-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFilePlusAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFilePlusAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFilePlusAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFilePlusAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFilePlusAlt; \ No newline at end of file diff --git a/icons/uil-file-plus.js b/icons/uil-file-plus.js index 124e92c5..c9db1645 100644 --- a/icons/uil-file-plus.js +++ b/icons/uil-file-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFilePlus = (props) => { - const { color, size, ...otherProps } = props +const UilFilePlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFilePlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFilePlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFilePlus; \ No newline at end of file diff --git a/icons/uil-file-question-alt.js b/icons/uil-file-question-alt.js index 40896a58..e8f0fcfd 100644 --- a/icons/uil-file-question-alt.js +++ b/icons/uil-file-question-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileQuestionAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileQuestionAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileQuestionAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileQuestionAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileQuestionAlt; \ No newline at end of file diff --git a/icons/uil-file-question.js b/icons/uil-file-question.js index b3509a4d..1cc7d821 100644 --- a/icons/uil-file-question.js +++ b/icons/uil-file-question.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileQuestion = (props) => { - const { color, size, ...otherProps } = props +const UilFileQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileQuestion.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileQuestion.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileQuestion; \ No newline at end of file diff --git a/icons/uil-file-redo-alt.js b/icons/uil-file-redo-alt.js index 69a75153..9bde5116 100644 --- a/icons/uil-file-redo-alt.js +++ b/icons/uil-file-redo-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileRedoAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileRedoAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileRedoAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileRedoAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileRedoAlt; \ No newline at end of file diff --git a/icons/uil-file-search-alt.js b/icons/uil-file-search-alt.js index 1950df9a..ebe754f1 100644 --- a/icons/uil-file-search-alt.js +++ b/icons/uil-file-search-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileSearchAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileSearchAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileSearchAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileSearchAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileSearchAlt; \ No newline at end of file diff --git a/icons/uil-file-share-alt.js b/icons/uil-file-share-alt.js index 98c460cc..1666ee0c 100644 --- a/icons/uil-file-share-alt.js +++ b/icons/uil-file-share-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileShareAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileShareAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileShareAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileShareAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileShareAlt; \ No newline at end of file diff --git a/icons/uil-file-shield-alt.js b/icons/uil-file-shield-alt.js index 9184fa80..f61ad944 100644 --- a/icons/uil-file-shield-alt.js +++ b/icons/uil-file-shield-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileShieldAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileShieldAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileShieldAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileShieldAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileShieldAlt; \ No newline at end of file diff --git a/icons/uil-file-slash.js b/icons/uil-file-slash.js index b441e845..4e9708ce 100644 --- a/icons/uil-file-slash.js +++ b/icons/uil-file-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileSlash = (props) => { - const { color, size, ...otherProps } = props +const UilFileSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileSlash; \ No newline at end of file diff --git a/icons/uil-file-times-alt.js b/icons/uil-file-times-alt.js index 160c2558..f9444096 100644 --- a/icons/uil-file-times-alt.js +++ b/icons/uil-file-times-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileTimesAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileTimesAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileTimesAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileTimesAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileTimesAlt; \ No newline at end of file diff --git a/icons/uil-file-times.js b/icons/uil-file-times.js index 129eaa62..46accb8e 100644 --- a/icons/uil-file-times.js +++ b/icons/uil-file-times.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileTimes = (props) => { - const { color, size, ...otherProps } = props +const UilFileTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileTimes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileTimes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileTimes; \ No newline at end of file diff --git a/icons/uil-file-upload-alt.js b/icons/uil-file-upload-alt.js index 6793b7ef..00b6e17a 100644 --- a/icons/uil-file-upload-alt.js +++ b/icons/uil-file-upload-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileUploadAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFileUploadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileUploadAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileUploadAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileUploadAlt; \ No newline at end of file diff --git a/icons/uil-file-upload.js b/icons/uil-file-upload.js index 4d0c975d..5a0250b5 100644 --- a/icons/uil-file-upload.js +++ b/icons/uil-file-upload.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFileUpload = (props) => { - const { color, size, ...otherProps } = props +const UilFileUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFileUpload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFileUpload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFileUpload; \ No newline at end of file diff --git a/icons/uil-file.js b/icons/uil-file.js index 6c2261c3..805f3a7e 100644 --- a/icons/uil-file.js +++ b/icons/uil-file.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFile = (props) => { - const { color, size, ...otherProps } = props +const UilFile = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFile.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFile.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFile; \ No newline at end of file diff --git a/icons/uil-files-landscapes-alt.js b/icons/uil-files-landscapes-alt.js index bfc35401..f1fc9e85 100644 --- a/icons/uil-files-landscapes-alt.js +++ b/icons/uil-files-landscapes-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFilesLandscapesAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFilesLandscapesAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFilesLandscapesAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFilesLandscapesAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFilesLandscapesAlt; \ No newline at end of file diff --git a/icons/uil-files-landscapes.js b/icons/uil-files-landscapes.js index dd8a9c9f..6e41d3cf 100644 --- a/icons/uil-files-landscapes.js +++ b/icons/uil-files-landscapes.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFilesLandscapes = (props) => { - const { color, size, ...otherProps } = props +const UilFilesLandscapes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFilesLandscapes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFilesLandscapes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFilesLandscapes; \ No newline at end of file diff --git a/icons/uil-film.js b/icons/uil-film.js index 14ba8bd2..da0ed3c7 100644 --- a/icons/uil-film.js +++ b/icons/uil-film.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFilm = (props) => { - const { color, size, ...otherProps } = props +const UilFilm = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFilm.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFilm.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFilm; \ No newline at end of file diff --git a/icons/uil-filter-slash.js b/icons/uil-filter-slash.js index 532df047..8c4c102b 100644 --- a/icons/uil-filter-slash.js +++ b/icons/uil-filter-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFilterSlash = (props) => { - const { color, size, ...otherProps } = props +const UilFilterSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFilterSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFilterSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFilterSlash; \ No newline at end of file diff --git a/icons/uil-filter.js b/icons/uil-filter.js index 9584ffd8..659cfadf 100644 --- a/icons/uil-filter.js +++ b/icons/uil-filter.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFilter = (props) => { - const { color, size, ...otherProps } = props +const UilFilter = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFilter.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFilter.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFilter; \ No newline at end of file diff --git a/icons/uil-fire.js b/icons/uil-fire.js index 22cac315..75b7ab4d 100644 --- a/icons/uil-fire.js +++ b/icons/uil-fire.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFire = (props) => { - const { color, size, ...otherProps } = props +const UilFire = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFire.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFire.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFire; \ No newline at end of file diff --git a/icons/uil-flask-potion.js b/icons/uil-flask-potion.js index afd33dd1..97c3afe7 100644 --- a/icons/uil-flask-potion.js +++ b/icons/uil-flask-potion.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFlaskPotion = (props) => { - const { color, size, ...otherProps } = props +const UilFlaskPotion = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFlaskPotion.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFlaskPotion.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFlaskPotion; \ No newline at end of file diff --git a/icons/uil-flask.js b/icons/uil-flask.js index 9068cb44..ba00146e 100644 --- a/icons/uil-flask.js +++ b/icons/uil-flask.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFlask = (props) => { - const { color, size, ...otherProps } = props +const UilFlask = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFlask.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFlask.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFlask; \ No newline at end of file diff --git a/icons/uil-flip-h-alt.js b/icons/uil-flip-h-alt.js index f4322833..37d963cd 100644 --- a/icons/uil-flip-h-alt.js +++ b/icons/uil-flip-h-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFlipHAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFlipHAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFlipHAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFlipHAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFlipHAlt; \ No newline at end of file diff --git a/icons/uil-flip-h.js b/icons/uil-flip-h.js index 28f048a8..58ccfa40 100644 --- a/icons/uil-flip-h.js +++ b/icons/uil-flip-h.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFlipH = (props) => { - const { color, size, ...otherProps } = props +const UilFlipH = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFlipH.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFlipH.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFlipH; \ No newline at end of file diff --git a/icons/uil-flip-v-alt.js b/icons/uil-flip-v-alt.js index 92d76f80..513ffd30 100644 --- a/icons/uil-flip-v-alt.js +++ b/icons/uil-flip-v-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFlipVAlt = (props) => { - const { color, size, ...otherProps } = props +const UilFlipVAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFlipVAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFlipVAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFlipVAlt; \ No newline at end of file diff --git a/icons/uil-flip-v.js b/icons/uil-flip-v.js index 4e002d35..937ff309 100644 --- a/icons/uil-flip-v.js +++ b/icons/uil-flip-v.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFlipV = (props) => { - const { color, size, ...otherProps } = props +const UilFlipV = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFlipV.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFlipV.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFlipV; \ No newline at end of file diff --git a/icons/uil-flower.js b/icons/uil-flower.js index e15e163d..fa851f5a 100644 --- a/icons/uil-flower.js +++ b/icons/uil-flower.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFlower = (props) => { - const { color, size, ...otherProps } = props +const UilFlower = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFlower.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFlower.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFlower; \ No newline at end of file diff --git a/icons/uil-focus-add.js b/icons/uil-focus-add.js index a9f1b23e..5adf26d2 100644 --- a/icons/uil-focus-add.js +++ b/icons/uil-focus-add.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFocusAdd = (props) => { - const { color, size, ...otherProps } = props +const UilFocusAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFocusAdd.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFocusAdd.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFocusAdd; \ No newline at end of file diff --git a/icons/uil-focus-target.js b/icons/uil-focus-target.js index 053221cf..fcea9a30 100644 --- a/icons/uil-focus-target.js +++ b/icons/uil-focus-target.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFocusTarget = (props) => { - const { color, size, ...otherProps } = props +const UilFocusTarget = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFocusTarget.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFocusTarget.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFocusTarget; \ No newline at end of file diff --git a/icons/uil-focus.js b/icons/uil-focus.js index bd7718ca..a30031d1 100644 --- a/icons/uil-focus.js +++ b/icons/uil-focus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFocus = (props) => { - const { color, size, ...otherProps } = props +const UilFocus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFocus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFocus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFocus; \ No newline at end of file diff --git a/icons/uil-folder-check.js b/icons/uil-folder-check.js index 575216e9..fba6818a 100644 --- a/icons/uil-folder-check.js +++ b/icons/uil-folder-check.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderCheck = (props) => { - const { color, size, ...otherProps } = props +const UilFolderCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderCheck.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderCheck.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderCheck; \ No newline at end of file diff --git a/icons/uil-folder-download.js b/icons/uil-folder-download.js index 3d21d1a3..409812de 100644 --- a/icons/uil-folder-download.js +++ b/icons/uil-folder-download.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderDownload = (props) => { - const { color, size, ...otherProps } = props +const UilFolderDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderDownload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderDownload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderDownload; \ No newline at end of file diff --git a/icons/uil-folder-exclamation.js b/icons/uil-folder-exclamation.js index 8b499bc8..5f04566e 100644 --- a/icons/uil-folder-exclamation.js +++ b/icons/uil-folder-exclamation.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderExclamation = (props) => { - const { color, size, ...otherProps } = props +const UilFolderExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderExclamation.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderExclamation.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderExclamation; \ No newline at end of file diff --git a/icons/uil-folder-heart.js b/icons/uil-folder-heart.js index cfcaf6e7..1f892eb0 100644 --- a/icons/uil-folder-heart.js +++ b/icons/uil-folder-heart.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderHeart = (props) => { - const { color, size, ...otherProps } = props +const UilFolderHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderHeart.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderHeart.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderHeart; \ No newline at end of file diff --git a/icons/uil-folder-info.js b/icons/uil-folder-info.js index b2ac1cd7..3c559098 100644 --- a/icons/uil-folder-info.js +++ b/icons/uil-folder-info.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderInfo = (props) => { - const { color, size, ...otherProps } = props +const UilFolderInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderInfo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderInfo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderInfo; \ No newline at end of file diff --git a/icons/uil-folder-lock.js b/icons/uil-folder-lock.js index 93bcf55e..f9c0320d 100644 --- a/icons/uil-folder-lock.js +++ b/icons/uil-folder-lock.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderLock = (props) => { - const { color, size, ...otherProps } = props +const UilFolderLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderLock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderLock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderLock; \ No newline at end of file diff --git a/icons/uil-folder-medical.js b/icons/uil-folder-medical.js index be377211..9396f68e 100644 --- a/icons/uil-folder-medical.js +++ b/icons/uil-folder-medical.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderMedical = (props) => { - const { color, size, ...otherProps } = props +const UilFolderMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderMedical.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderMedical.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderMedical; \ No newline at end of file diff --git a/icons/uil-folder-minus.js b/icons/uil-folder-minus.js index fc9f679f..4f370416 100644 --- a/icons/uil-folder-minus.js +++ b/icons/uil-folder-minus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderMinus = (props) => { - const { color, size, ...otherProps } = props +const UilFolderMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderMinus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderMinus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderMinus; \ No newline at end of file diff --git a/icons/uil-folder-network.js b/icons/uil-folder-network.js index 0244b024..00751a34 100644 --- a/icons/uil-folder-network.js +++ b/icons/uil-folder-network.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderNetwork = (props) => { - const { color, size, ...otherProps } = props +const UilFolderNetwork = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderNetwork.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderNetwork.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderNetwork; \ No newline at end of file diff --git a/icons/uil-folder-open.js b/icons/uil-folder-open.js index ac9f6545..682b84be 100644 --- a/icons/uil-folder-open.js +++ b/icons/uil-folder-open.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderOpen = (props) => { - const { color, size, ...otherProps } = props +const UilFolderOpen = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderOpen.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderOpen.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderOpen; \ No newline at end of file diff --git a/icons/uil-folder-plus.js b/icons/uil-folder-plus.js index c32309c3..39ec7885 100644 --- a/icons/uil-folder-plus.js +++ b/icons/uil-folder-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderPlus = (props) => { - const { color, size, ...otherProps } = props +const UilFolderPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderPlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderPlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderPlus; \ No newline at end of file diff --git a/icons/uil-folder-question.js b/icons/uil-folder-question.js index 59400ba4..3fc54843 100644 --- a/icons/uil-folder-question.js +++ b/icons/uil-folder-question.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderQuestion = (props) => { - const { color, size, ...otherProps } = props +const UilFolderQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderQuestion.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderQuestion.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderQuestion; \ No newline at end of file diff --git a/icons/uil-folder-slash.js b/icons/uil-folder-slash.js index f41eb001..ff5628dd 100644 --- a/icons/uil-folder-slash.js +++ b/icons/uil-folder-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderSlash = (props) => { - const { color, size, ...otherProps } = props +const UilFolderSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderSlash; \ No newline at end of file diff --git a/icons/uil-folder-times.js b/icons/uil-folder-times.js index 193916b4..8280e7db 100644 --- a/icons/uil-folder-times.js +++ b/icons/uil-folder-times.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderTimes = (props) => { - const { color, size, ...otherProps } = props +const UilFolderTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderTimes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderTimes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderTimes; \ No newline at end of file diff --git a/icons/uil-folder-upload.js b/icons/uil-folder-upload.js index 01cc44a1..b605b407 100644 --- a/icons/uil-folder-upload.js +++ b/icons/uil-folder-upload.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolderUpload = (props) => { - const { color, size, ...otherProps } = props +const UilFolderUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolderUpload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolderUpload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolderUpload; \ No newline at end of file diff --git a/icons/uil-folder.js b/icons/uil-folder.js index 986f5c8f..a0ae3819 100644 --- a/icons/uil-folder.js +++ b/icons/uil-folder.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFolder = (props) => { - const { color, size, ...otherProps } = props +const UilFolder = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFolder.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFolder.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFolder; \ No newline at end of file diff --git a/icons/uil-font.js b/icons/uil-font.js index 3c6dd486..afda51ef 100644 --- a/icons/uil-font.js +++ b/icons/uil-font.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFont = (props) => { - const { color, size, ...otherProps } = props +const UilFont = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFont.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFont.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFont; \ No newline at end of file diff --git a/icons/uil-football-american.js b/icons/uil-football-american.js index c7716fd5..92d5f72a 100644 --- a/icons/uil-football-american.js +++ b/icons/uil-football-american.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFootballAmerican = (props) => { - const { color, size, ...otherProps } = props +const UilFootballAmerican = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFootballAmerican.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFootballAmerican.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFootballAmerican; \ No newline at end of file diff --git a/icons/uil-football-ball.js b/icons/uil-football-ball.js index 1837f1a3..cef0131d 100644 --- a/icons/uil-football-ball.js +++ b/icons/uil-football-ball.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFootballBall = (props) => { - const { color, size, ...otherProps } = props +const UilFootballBall = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFootballBall.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFootballBall.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFootballBall; \ No newline at end of file diff --git a/icons/uil-football.js b/icons/uil-football.js index 7ad4c39c..f9299362 100644 --- a/icons/uil-football.js +++ b/icons/uil-football.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFootball = (props) => { - const { color, size, ...otherProps } = props +const UilFootball = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFootball.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFootball.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFootball; \ No newline at end of file diff --git a/icons/uil-forecastcloud-moon-tear.js b/icons/uil-forecastcloud-moon-tear.js index c88009a2..30a6e2db 100644 --- a/icons/uil-forecastcloud-moon-tear.js +++ b/icons/uil-forecastcloud-moon-tear.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilForecastcloudMoonTear = (props) => { - const { color, size, ...otherProps } = props +const UilForecastcloudMoonTear = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilForecastcloudMoonTear.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilForecastcloudMoonTear.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilForecastcloudMoonTear; \ No newline at end of file diff --git a/icons/uil-forwaded-call.js b/icons/uil-forwaded-call.js index 911d3f6a..409e1f7d 100644 --- a/icons/uil-forwaded-call.js +++ b/icons/uil-forwaded-call.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilForwadedCall = (props) => { - const { color, size, ...otherProps } = props +const UilForwadedCall = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilForwadedCall.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilForwadedCall.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilForwadedCall; \ No newline at end of file diff --git a/icons/uil-forward.js b/icons/uil-forward.js index 047493bb..54ff5b1c 100644 --- a/icons/uil-forward.js +++ b/icons/uil-forward.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilForward = (props) => { - const { color, size, ...otherProps } = props +const UilForward = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilForward.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilForward.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilForward; \ No newline at end of file diff --git a/icons/uil-frown.js b/icons/uil-frown.js index 10d737d9..6222a7d9 100644 --- a/icons/uil-frown.js +++ b/icons/uil-frown.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilFrown = (props) => { - const { color, size, ...otherProps } = props +const UilFrown = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilFrown.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilFrown.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilFrown; \ No newline at end of file diff --git a/icons/uil-game-structure.js b/icons/uil-game-structure.js index f8fb4da3..09e3068c 100644 --- a/icons/uil-game-structure.js +++ b/icons/uil-game-structure.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGameStructure = (props) => { - const { color, size, ...otherProps } = props +const UilGameStructure = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGameStructure.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGameStructure.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGameStructure; \ No newline at end of file diff --git a/icons/uil-gift.js b/icons/uil-gift.js index fc719cc3..a48c07e4 100644 --- a/icons/uil-gift.js +++ b/icons/uil-gift.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGift = (props) => { - const { color, size, ...otherProps } = props +const UilGift = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGift.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGift.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGift; \ No newline at end of file diff --git a/icons/uil-github-alt.js b/icons/uil-github-alt.js index 82718670..06fe4f31 100644 --- a/icons/uil-github-alt.js +++ b/icons/uil-github-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGithubAlt = (props) => { - const { color, size, ...otherProps } = props +const UilGithubAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGithubAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGithubAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGithubAlt; \ No newline at end of file diff --git a/icons/uil-github.js b/icons/uil-github.js index db14cb4f..1ad20835 100644 --- a/icons/uil-github.js +++ b/icons/uil-github.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGithub = (props) => { - const { color, size, ...otherProps } = props +const UilGithub = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGithub.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGithub.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGithub; \ No newline at end of file diff --git a/icons/uil-gitlab.js b/icons/uil-gitlab.js index e56d11b5..71c70478 100644 --- a/icons/uil-gitlab.js +++ b/icons/uil-gitlab.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGitlab = (props) => { - const { color, size, ...otherProps } = props +const UilGitlab = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGitlab.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGitlab.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGitlab; \ No newline at end of file diff --git a/icons/uil-glass-martini-alt-slash.js b/icons/uil-glass-martini-alt-slash.js index 4b1be492..8c34fa72 100644 --- a/icons/uil-glass-martini-alt-slash.js +++ b/icons/uil-glass-martini-alt-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGlassMartiniAltSlash = (props) => { - const { color, size, ...otherProps } = props +const UilGlassMartiniAltSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGlassMartiniAltSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGlassMartiniAltSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGlassMartiniAltSlash; \ No newline at end of file diff --git a/icons/uil-glass-martini-alt.js b/icons/uil-glass-martini-alt.js index 21ac4e3e..f54f72e4 100644 --- a/icons/uil-glass-martini-alt.js +++ b/icons/uil-glass-martini-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGlassMartiniAlt = (props) => { - const { color, size, ...otherProps } = props +const UilGlassMartiniAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGlassMartiniAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGlassMartiniAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGlassMartiniAlt; \ No newline at end of file diff --git a/icons/uil-glass-martini.js b/icons/uil-glass-martini.js index f7de3a37..84fcdeaf 100644 --- a/icons/uil-glass-martini.js +++ b/icons/uil-glass-martini.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGlassMartini = (props) => { - const { color, size, ...otherProps } = props +const UilGlassMartini = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGlassMartini.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGlassMartini.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGlassMartini; \ No newline at end of file diff --git a/icons/uil-glass-tea.js b/icons/uil-glass-tea.js index 3d688523..9d0699b3 100644 --- a/icons/uil-glass-tea.js +++ b/icons/uil-glass-tea.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGlassTea = (props) => { - const { color, size, ...otherProps } = props +const UilGlassTea = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGlassTea.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGlassTea.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGlassTea; \ No newline at end of file diff --git a/icons/uil-glass.js b/icons/uil-glass.js index 1e2ede0c..70dd8c62 100644 --- a/icons/uil-glass.js +++ b/icons/uil-glass.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGlass = (props) => { - const { color, size, ...otherProps } = props +const UilGlass = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGlass.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGlass.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGlass; \ No newline at end of file diff --git a/icons/uil-globe.js b/icons/uil-globe.js index c82538c9..92e4e159 100644 --- a/icons/uil-globe.js +++ b/icons/uil-globe.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGlobe = (props) => { - const { color, size, ...otherProps } = props +const UilGlobe = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGlobe.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGlobe.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGlobe; \ No newline at end of file diff --git a/icons/uil-gold.js b/icons/uil-gold.js index c1e5c461..b1b7a611 100644 --- a/icons/uil-gold.js +++ b/icons/uil-gold.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGold = (props) => { - const { color, size, ...otherProps } = props +const UilGold = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGold.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGold.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGold; \ No newline at end of file diff --git a/icons/uil-golf-ball.js b/icons/uil-golf-ball.js index e96c4902..eb68cf0f 100644 --- a/icons/uil-golf-ball.js +++ b/icons/uil-golf-ball.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGolfBall = (props) => { - const { color, size, ...otherProps } = props +const UilGolfBall = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGolfBall.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGolfBall.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGolfBall; \ No newline at end of file diff --git a/icons/uil-google-drive-alt.js b/icons/uil-google-drive-alt.js index 92da5f0d..922e4202 100644 --- a/icons/uil-google-drive-alt.js +++ b/icons/uil-google-drive-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGoogleDriveAlt = (props) => { - const { color, size, ...otherProps } = props +const UilGoogleDriveAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGoogleDriveAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGoogleDriveAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGoogleDriveAlt; \ No newline at end of file diff --git a/icons/uil-google-drive.js b/icons/uil-google-drive.js index 9dcd9ede..05f72859 100644 --- a/icons/uil-google-drive.js +++ b/icons/uil-google-drive.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGoogleDrive = (props) => { - const { color, size, ...otherProps } = props +const UilGoogleDrive = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGoogleDrive.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGoogleDrive.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGoogleDrive; \ No newline at end of file diff --git a/icons/uil-google-hangouts-alt.js b/icons/uil-google-hangouts-alt.js index 4cb6f29b..e6b3f550 100644 --- a/icons/uil-google-hangouts-alt.js +++ b/icons/uil-google-hangouts-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGoogleHangoutsAlt = (props) => { - const { color, size, ...otherProps } = props +const UilGoogleHangoutsAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGoogleHangoutsAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGoogleHangoutsAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGoogleHangoutsAlt; \ No newline at end of file diff --git a/icons/uil-google-hangouts.js b/icons/uil-google-hangouts.js index 8e090280..eaa0e931 100644 --- a/icons/uil-google-hangouts.js +++ b/icons/uil-google-hangouts.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGoogleHangouts = (props) => { - const { color, size, ...otherProps } = props +const UilGoogleHangouts = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGoogleHangouts.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGoogleHangouts.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGoogleHangouts; \ No newline at end of file diff --git a/icons/uil-google-play.js b/icons/uil-google-play.js index 7dab97e4..627ce527 100644 --- a/icons/uil-google-play.js +++ b/icons/uil-google-play.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGooglePlay = (props) => { - const { color, size, ...otherProps } = props +const UilGooglePlay = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGooglePlay.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGooglePlay.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGooglePlay; \ No newline at end of file diff --git a/icons/uil-google.js b/icons/uil-google.js index a05b58b2..f9cc9774 100644 --- a/icons/uil-google.js +++ b/icons/uil-google.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGoogle = (props) => { - const { color, size, ...otherProps } = props +const UilGoogle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGoogle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGoogle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGoogle; \ No newline at end of file diff --git a/icons/uil-graduation-cap.js b/icons/uil-graduation-cap.js index 5e9d2561..8c8cfdab 100644 --- a/icons/uil-graduation-cap.js +++ b/icons/uil-graduation-cap.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGraduationCap = (props) => { - const { color, size, ...otherProps } = props +const UilGraduationCap = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGraduationCap.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGraduationCap.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGraduationCap; \ No newline at end of file diff --git a/icons/uil-graph-bar.js b/icons/uil-graph-bar.js index cdfae486..979ff565 100644 --- a/icons/uil-graph-bar.js +++ b/icons/uil-graph-bar.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGraphBar = (props) => { - const { color, size, ...otherProps } = props +const UilGraphBar = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGraphBar.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGraphBar.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGraphBar; \ No newline at end of file diff --git a/icons/uil-grid.js b/icons/uil-grid.js index b6704cf7..f291c3a7 100644 --- a/icons/uil-grid.js +++ b/icons/uil-grid.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGrid = (props) => { - const { color, size, ...otherProps } = props +const UilGrid = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGrid.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGrid.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGrid; \ No newline at end of file diff --git a/icons/uil-grids.js b/icons/uil-grids.js index 21daba11..45caa501 100644 --- a/icons/uil-grids.js +++ b/icons/uil-grids.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGrids = (props) => { - const { color, size, ...otherProps } = props +const UilGrids = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGrids.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGrids.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGrids; \ No newline at end of file diff --git a/icons/uil-grin-tongue-wink-alt.js b/icons/uil-grin-tongue-wink-alt.js index e4514679..ede3fcbe 100644 --- a/icons/uil-grin-tongue-wink-alt.js +++ b/icons/uil-grin-tongue-wink-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGrinTongueWinkAlt = (props) => { - const { color, size, ...otherProps } = props +const UilGrinTongueWinkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGrinTongueWinkAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGrinTongueWinkAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGrinTongueWinkAlt; \ No newline at end of file diff --git a/icons/uil-grin-tongue-wink.js b/icons/uil-grin-tongue-wink.js index 64c344e6..682569e6 100644 --- a/icons/uil-grin-tongue-wink.js +++ b/icons/uil-grin-tongue-wink.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGrinTongueWink = (props) => { - const { color, size, ...otherProps } = props +const UilGrinTongueWink = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGrinTongueWink.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGrinTongueWink.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGrinTongueWink; \ No newline at end of file diff --git a/icons/uil-grin.js b/icons/uil-grin.js index e5e8370d..0e9592d2 100644 --- a/icons/uil-grin.js +++ b/icons/uil-grin.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGrin = (props) => { - const { color, size, ...otherProps } = props +const UilGrin = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGrin.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGrin.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGrin; \ No newline at end of file diff --git a/icons/uil-grip-horizontal-line.js b/icons/uil-grip-horizontal-line.js index 013ac04c..074c325a 100644 --- a/icons/uil-grip-horizontal-line.js +++ b/icons/uil-grip-horizontal-line.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilGripHorizontalLine = (props) => { - const { color, size, ...otherProps } = props +const UilGripHorizontalLine = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilGripHorizontalLine.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilGripHorizontalLine.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilGripHorizontalLine; \ No newline at end of file diff --git a/icons/uil-hard-hat.js b/icons/uil-hard-hat.js index d7013aa5..dd7080cb 100644 --- a/icons/uil-hard-hat.js +++ b/icons/uil-hard-hat.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHardHat = (props) => { - const { color, size, ...otherProps } = props +const UilHardHat = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHardHat.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHardHat.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHardHat; \ No newline at end of file diff --git a/icons/uil-hdd.js b/icons/uil-hdd.js index 6a89fc81..28054f1a 100644 --- a/icons/uil-hdd.js +++ b/icons/uil-hdd.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHdd = (props) => { - const { color, size, ...otherProps } = props +const UilHdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHdd.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHdd.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHdd; \ No newline at end of file diff --git a/icons/uil-head-side-cough.js b/icons/uil-head-side-cough.js index d28a6119..7a74adb2 100644 --- a/icons/uil-head-side-cough.js +++ b/icons/uil-head-side-cough.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHeadSideCough = (props) => { - const { color, size, ...otherProps } = props +const UilHeadSideCough = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHeadSideCough.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHeadSideCough.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHeadSideCough; \ No newline at end of file diff --git a/icons/uil-head-side-mask.js b/icons/uil-head-side-mask.js index aa05d4cb..7ee1d24d 100644 --- a/icons/uil-head-side-mask.js +++ b/icons/uil-head-side-mask.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHeadSideMask = (props) => { - const { color, size, ...otherProps } = props +const UilHeadSideMask = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHeadSideMask.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHeadSideMask.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHeadSideMask; \ No newline at end of file diff --git a/icons/uil-head-side.js b/icons/uil-head-side.js index 1ea65c2a..664a3450 100644 --- a/icons/uil-head-side.js +++ b/icons/uil-head-side.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHeadSide = (props) => { - const { color, size, ...otherProps } = props +const UilHeadSide = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHeadSide.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHeadSide.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHeadSide; \ No newline at end of file diff --git a/icons/uil-headphone-slash.js b/icons/uil-headphone-slash.js index d174a531..1731bdd1 100644 --- a/icons/uil-headphone-slash.js +++ b/icons/uil-headphone-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHeadphoneSlash = (props) => { - const { color, size, ...otherProps } = props +const UilHeadphoneSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHeadphoneSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHeadphoneSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHeadphoneSlash; \ No newline at end of file diff --git a/icons/uil-headphones-alt.js b/icons/uil-headphones-alt.js index 12320419..63a805e3 100644 --- a/icons/uil-headphones-alt.js +++ b/icons/uil-headphones-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHeadphonesAlt = (props) => { - const { color, size, ...otherProps } = props +const UilHeadphonesAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHeadphonesAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHeadphonesAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHeadphonesAlt; \ No newline at end of file diff --git a/icons/uil-headphones.js b/icons/uil-headphones.js index 4b02367f..f6a18702 100644 --- a/icons/uil-headphones.js +++ b/icons/uil-headphones.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHeadphones = (props) => { - const { color, size, ...otherProps } = props +const UilHeadphones = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHeadphones.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHeadphones.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHeadphones; \ No newline at end of file diff --git a/icons/uil-heart-alt.js b/icons/uil-heart-alt.js index 00b6569b..46b64c1c 100644 --- a/icons/uil-heart-alt.js +++ b/icons/uil-heart-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHeartAlt = (props) => { - const { color, size, ...otherProps } = props +const UilHeartAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHeartAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHeartAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHeartAlt; \ No newline at end of file diff --git a/icons/uil-heart-break.js b/icons/uil-heart-break.js index 3c581dd4..f0196c83 100644 --- a/icons/uil-heart-break.js +++ b/icons/uil-heart-break.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHeartBreak = (props) => { - const { color, size, ...otherProps } = props +const UilHeartBreak = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHeartBreak.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHeartBreak.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHeartBreak; \ No newline at end of file diff --git a/icons/uil-heart-medical.js b/icons/uil-heart-medical.js index 90f5806e..e95db1ec 100644 --- a/icons/uil-heart-medical.js +++ b/icons/uil-heart-medical.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHeartMedical = (props) => { - const { color, size, ...otherProps } = props +const UilHeartMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHeartMedical.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHeartMedical.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHeartMedical; \ No newline at end of file diff --git a/icons/uil-heart-rate.js b/icons/uil-heart-rate.js index bd7ab018..e41919b5 100644 --- a/icons/uil-heart-rate.js +++ b/icons/uil-heart-rate.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHeartRate = (props) => { - const { color, size, ...otherProps } = props +const UilHeartRate = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHeartRate.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHeartRate.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHeartRate; \ No newline at end of file diff --git a/icons/uil-heart-sign.js b/icons/uil-heart-sign.js index f73c14d5..24b13749 100644 --- a/icons/uil-heart-sign.js +++ b/icons/uil-heart-sign.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHeartSign = (props) => { - const { color, size, ...otherProps } = props +const UilHeartSign = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHeartSign.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHeartSign.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHeartSign; \ No newline at end of file diff --git a/icons/uil-heart.js b/icons/uil-heart.js index d12ace3c..56438e20 100644 --- a/icons/uil-heart.js +++ b/icons/uil-heart.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHeart = (props) => { - const { color, size, ...otherProps } = props +const UilHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHeart.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHeart.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHeart; \ No newline at end of file diff --git a/icons/uil-heartbeat.js b/icons/uil-heartbeat.js index ba1f4325..fa04ac1f 100644 --- a/icons/uil-heartbeat.js +++ b/icons/uil-heartbeat.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHeartbeat = (props) => { - const { color, size, ...otherProps } = props +const UilHeartbeat = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHeartbeat.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHeartbeat.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHeartbeat; \ No newline at end of file diff --git a/icons/uil-hindi-to-chinese.js b/icons/uil-hindi-to-chinese.js index 4d9f1ea9..ac4b1605 100644 --- a/icons/uil-hindi-to-chinese.js +++ b/icons/uil-hindi-to-chinese.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHindiToChinese = (props) => { - const { color, size, ...otherProps } = props +const UilHindiToChinese = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHindiToChinese.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHindiToChinese.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHindiToChinese; \ No newline at end of file diff --git a/icons/uil-hipchat.js b/icons/uil-hipchat.js index 3ae0b864..907811a0 100644 --- a/icons/uil-hipchat.js +++ b/icons/uil-hipchat.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHipchat = (props) => { - const { color, size, ...otherProps } = props +const UilHipchat = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHipchat.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHipchat.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHipchat; \ No newline at end of file diff --git a/icons/uil-history-alt.js b/icons/uil-history-alt.js index 933c60e2..2f4c8022 100644 --- a/icons/uil-history-alt.js +++ b/icons/uil-history-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHistoryAlt = (props) => { - const { color, size, ...otherProps } = props +const UilHistoryAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHistoryAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHistoryAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHistoryAlt; \ No newline at end of file diff --git a/icons/uil-history.js b/icons/uil-history.js index 0274a860..17755be3 100644 --- a/icons/uil-history.js +++ b/icons/uil-history.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHistory = (props) => { - const { color, size, ...otherProps } = props +const UilHistory = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHistory.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHistory.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHistory; \ No newline at end of file diff --git a/icons/uil-home.js b/icons/uil-home.js index a1da054c..4711ba1c 100644 --- a/icons/uil-home.js +++ b/icons/uil-home.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHome = (props) => { - const { color, size, ...otherProps } = props +const UilHome = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHome.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHome.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHome; \ No newline at end of file diff --git a/icons/uil-horizontal-align-center.js b/icons/uil-horizontal-align-center.js index 654c6f1b..bb63237c 100644 --- a/icons/uil-horizontal-align-center.js +++ b/icons/uil-horizontal-align-center.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHorizontalAlignCenter = (props) => { - const { color, size, ...otherProps } = props +const UilHorizontalAlignCenter = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHorizontalAlignCenter.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHorizontalAlignCenter.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHorizontalAlignCenter; \ No newline at end of file diff --git a/icons/uil-horizontal-align-left.js b/icons/uil-horizontal-align-left.js index 64688810..4d4ef1c4 100644 --- a/icons/uil-horizontal-align-left.js +++ b/icons/uil-horizontal-align-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHorizontalAlignLeft = (props) => { - const { color, size, ...otherProps } = props +const UilHorizontalAlignLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHorizontalAlignLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHorizontalAlignLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHorizontalAlignLeft; \ No newline at end of file diff --git a/icons/uil-horizontal-align-right.js b/icons/uil-horizontal-align-right.js index 79f5cc3f..acda36c1 100644 --- a/icons/uil-horizontal-align-right.js +++ b/icons/uil-horizontal-align-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHorizontalAlignRight = (props) => { - const { color, size, ...otherProps } = props +const UilHorizontalAlignRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHorizontalAlignRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHorizontalAlignRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHorizontalAlignRight; \ No newline at end of file diff --git a/icons/uil-horizontal-distribution-center.js b/icons/uil-horizontal-distribution-center.js index 9fa98b0e..00e4d3d3 100644 --- a/icons/uil-horizontal-distribution-center.js +++ b/icons/uil-horizontal-distribution-center.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHorizontalDistributionCenter = (props) => { - const { color, size, ...otherProps } = props +const UilHorizontalDistributionCenter = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHorizontalDistributionCenter.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHorizontalDistributionCenter.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHorizontalDistributionCenter; \ No newline at end of file diff --git a/icons/uil-horizontal-distribution-left.js b/icons/uil-horizontal-distribution-left.js index 7a743e38..2d5b0ad4 100644 --- a/icons/uil-horizontal-distribution-left.js +++ b/icons/uil-horizontal-distribution-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHorizontalDistributionLeft = (props) => { - const { color, size, ...otherProps } = props +const UilHorizontalDistributionLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHorizontalDistributionLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHorizontalDistributionLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHorizontalDistributionLeft; \ No newline at end of file diff --git a/icons/uil-horizontal-distribution-right.js b/icons/uil-horizontal-distribution-right.js index a6bd3f94..18d5e89d 100644 --- a/icons/uil-horizontal-distribution-right.js +++ b/icons/uil-horizontal-distribution-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHorizontalDistributionRight = (props) => { - const { color, size, ...otherProps } = props +const UilHorizontalDistributionRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHorizontalDistributionRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHorizontalDistributionRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHorizontalDistributionRight; \ No newline at end of file diff --git a/icons/uil-hospital-square-sign.js b/icons/uil-hospital-square-sign.js index cfc340ad..e243fe08 100644 --- a/icons/uil-hospital-square-sign.js +++ b/icons/uil-hospital-square-sign.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHospitalSquareSign = (props) => { - const { color, size, ...otherProps } = props +const UilHospitalSquareSign = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHospitalSquareSign.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHospitalSquareSign.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHospitalSquareSign; \ No newline at end of file diff --git a/icons/uil-hospital-symbol.js b/icons/uil-hospital-symbol.js index eb20e682..7adf8d7c 100644 --- a/icons/uil-hospital-symbol.js +++ b/icons/uil-hospital-symbol.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHospitalSymbol = (props) => { - const { color, size, ...otherProps } = props +const UilHospitalSymbol = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHospitalSymbol.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHospitalSymbol.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHospitalSymbol; \ No newline at end of file diff --git a/icons/uil-hospital.js b/icons/uil-hospital.js index 325fb6b4..d558a6f2 100644 --- a/icons/uil-hospital.js +++ b/icons/uil-hospital.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHospital = (props) => { - const { color, size, ...otherProps } = props +const UilHospital = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHospital.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHospital.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHospital; \ No newline at end of file diff --git a/icons/uil-hourglass.js b/icons/uil-hourglass.js index cc0122dc..112850f5 100644 --- a/icons/uil-hourglass.js +++ b/icons/uil-hourglass.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHourglass = (props) => { - const { color, size, ...otherProps } = props +const UilHourglass = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHourglass.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHourglass.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHourglass; \ No newline at end of file diff --git a/icons/uil-house-user.js b/icons/uil-house-user.js index 1ff2aac1..ae1f2ee2 100644 --- a/icons/uil-house-user.js +++ b/icons/uil-house-user.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHouseUser = (props) => { - const { color, size, ...otherProps } = props +const UilHouseUser = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHouseUser.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHouseUser.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHouseUser; \ No newline at end of file diff --git a/icons/uil-html3-alt.js b/icons/uil-html3-alt.js index 502ab189..5f6febf4 100644 --- a/icons/uil-html3-alt.js +++ b/icons/uil-html3-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHtml3Alt = (props) => { - const { color, size, ...otherProps } = props +const UilHtml3Alt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHtml3Alt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHtml3Alt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHtml3Alt; \ No newline at end of file diff --git a/icons/uil-html3.js b/icons/uil-html3.js index cd3b6894..b47397ae 100644 --- a/icons/uil-html3.js +++ b/icons/uil-html3.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHtml3 = (props) => { - const { color, size, ...otherProps } = props +const UilHtml3 = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHtml3.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHtml3.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHtml3; \ No newline at end of file diff --git a/icons/uil-html5-alt.js b/icons/uil-html5-alt.js index 3394f36a..8a6f1fc4 100644 --- a/icons/uil-html5-alt.js +++ b/icons/uil-html5-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHtml5Alt = (props) => { - const { color, size, ...otherProps } = props +const UilHtml5Alt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHtml5Alt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHtml5Alt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHtml5Alt; \ No newline at end of file diff --git a/icons/uil-html5.js b/icons/uil-html5.js index 310c6f74..584e063e 100644 --- a/icons/uil-html5.js +++ b/icons/uil-html5.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHtml5 = (props) => { - const { color, size, ...otherProps } = props +const UilHtml5 = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHtml5.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHtml5.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHtml5; \ No newline at end of file diff --git a/icons/uil-hunting.js b/icons/uil-hunting.js index e17c5658..1e884dd5 100644 --- a/icons/uil-hunting.js +++ b/icons/uil-hunting.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilHunting = (props) => { - const { color, size, ...otherProps } = props +const UilHunting = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilHunting.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilHunting.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilHunting; \ No newline at end of file diff --git a/icons/uil-icons.js b/icons/uil-icons.js index 46c958fd..ac42348f 100644 --- a/icons/uil-icons.js +++ b/icons/uil-icons.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilIcons = (props) => { - const { color, size, ...otherProps } = props +const UilIcons = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilIcons.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilIcons.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilIcons; \ No newline at end of file diff --git a/icons/uil-illustration.js b/icons/uil-illustration.js index 94b0e89d..2e3c7688 100644 --- a/icons/uil-illustration.js +++ b/icons/uil-illustration.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilIllustration = (props) => { - const { color, size, ...otherProps } = props +const UilIllustration = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilIllustration.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilIllustration.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilIllustration; \ No newline at end of file diff --git a/icons/uil-image-alt-slash.js b/icons/uil-image-alt-slash.js index b53f1fb5..ebcf76f6 100644 --- a/icons/uil-image-alt-slash.js +++ b/icons/uil-image-alt-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageAltSlash = (props) => { - const { color, size, ...otherProps } = props +const UilImageAltSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageAltSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageAltSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageAltSlash; \ No newline at end of file diff --git a/icons/uil-image-block.js b/icons/uil-image-block.js index 53426707..79c366e0 100644 --- a/icons/uil-image-block.js +++ b/icons/uil-image-block.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageBlock = (props) => { - const { color, size, ...otherProps } = props +const UilImageBlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageBlock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageBlock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageBlock; \ No newline at end of file diff --git a/icons/uil-image-broken.js b/icons/uil-image-broken.js index d958d46d..279d7e1e 100644 --- a/icons/uil-image-broken.js +++ b/icons/uil-image-broken.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageBroken = (props) => { - const { color, size, ...otherProps } = props +const UilImageBroken = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageBroken.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageBroken.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageBroken; \ No newline at end of file diff --git a/icons/uil-image-check.js b/icons/uil-image-check.js index 9e735d8f..9c775260 100644 --- a/icons/uil-image-check.js +++ b/icons/uil-image-check.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageCheck = (props) => { - const { color, size, ...otherProps } = props +const UilImageCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageCheck.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageCheck.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageCheck; \ No newline at end of file diff --git a/icons/uil-image-download.js b/icons/uil-image-download.js index 5cc7f720..79c93c24 100644 --- a/icons/uil-image-download.js +++ b/icons/uil-image-download.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageDownload = (props) => { - const { color, size, ...otherProps } = props +const UilImageDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageDownload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageDownload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageDownload; \ No newline at end of file diff --git a/icons/uil-image-edit.js b/icons/uil-image-edit.js index af0dd4d8..c76f6b01 100644 --- a/icons/uil-image-edit.js +++ b/icons/uil-image-edit.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageEdit = (props) => { - const { color, size, ...otherProps } = props +const UilImageEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageEdit.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageEdit.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageEdit; \ No newline at end of file diff --git a/icons/uil-image-lock.js b/icons/uil-image-lock.js index 191304de..403b851f 100644 --- a/icons/uil-image-lock.js +++ b/icons/uil-image-lock.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageLock = (props) => { - const { color, size, ...otherProps } = props +const UilImageLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageLock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageLock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageLock; \ No newline at end of file diff --git a/icons/uil-image-minus.js b/icons/uil-image-minus.js index 0a5fdf43..21e992d7 100644 --- a/icons/uil-image-minus.js +++ b/icons/uil-image-minus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageMinus = (props) => { - const { color, size, ...otherProps } = props +const UilImageMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageMinus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageMinus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageMinus; \ No newline at end of file diff --git a/icons/uil-image-plus.js b/icons/uil-image-plus.js index c48c3f9a..fbda9bea 100644 --- a/icons/uil-image-plus.js +++ b/icons/uil-image-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImagePlus = (props) => { - const { color, size, ...otherProps } = props +const UilImagePlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImagePlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImagePlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImagePlus; \ No newline at end of file diff --git a/icons/uil-image-question.js b/icons/uil-image-question.js index a5997f0f..b6cf64dd 100644 --- a/icons/uil-image-question.js +++ b/icons/uil-image-question.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageQuestion = (props) => { - const { color, size, ...otherProps } = props +const UilImageQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageQuestion.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageQuestion.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageQuestion; \ No newline at end of file diff --git a/icons/uil-image-redo.js b/icons/uil-image-redo.js index dd370315..43fbad3a 100644 --- a/icons/uil-image-redo.js +++ b/icons/uil-image-redo.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageRedo = (props) => { - const { color, size, ...otherProps } = props +const UilImageRedo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageRedo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageRedo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageRedo; \ No newline at end of file diff --git a/icons/uil-image-resize-landscape.js b/icons/uil-image-resize-landscape.js index 255774b3..6148b0b5 100644 --- a/icons/uil-image-resize-landscape.js +++ b/icons/uil-image-resize-landscape.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageResizeLandscape = (props) => { - const { color, size, ...otherProps } = props +const UilImageResizeLandscape = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageResizeLandscape.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageResizeLandscape.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageResizeLandscape; \ No newline at end of file diff --git a/icons/uil-image-resize-square.js b/icons/uil-image-resize-square.js index 6bf18d29..2daf2ec0 100644 --- a/icons/uil-image-resize-square.js +++ b/icons/uil-image-resize-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageResizeSquare = (props) => { - const { color, size, ...otherProps } = props +const UilImageResizeSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageResizeSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageResizeSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageResizeSquare; \ No newline at end of file diff --git a/icons/uil-image-search.js b/icons/uil-image-search.js index 01ea0738..560593c7 100644 --- a/icons/uil-image-search.js +++ b/icons/uil-image-search.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageSearch = (props) => { - const { color, size, ...otherProps } = props +const UilImageSearch = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageSearch.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageSearch.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageSearch; \ No newline at end of file diff --git a/icons/uil-image-share.js b/icons/uil-image-share.js index 69bf96f3..fac92c53 100644 --- a/icons/uil-image-share.js +++ b/icons/uil-image-share.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageShare = (props) => { - const { color, size, ...otherProps } = props +const UilImageShare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageShare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageShare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageShare; \ No newline at end of file diff --git a/icons/uil-image-shield.js b/icons/uil-image-shield.js index e0ee62d2..75a241c4 100644 --- a/icons/uil-image-shield.js +++ b/icons/uil-image-shield.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageShield = (props) => { - const { color, size, ...otherProps } = props +const UilImageShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageShield.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageShield.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageShield; \ No newline at end of file diff --git a/icons/uil-image-slash.js b/icons/uil-image-slash.js index 735964ca..f7c6a3f2 100644 --- a/icons/uil-image-slash.js +++ b/icons/uil-image-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageSlash = (props) => { - const { color, size, ...otherProps } = props +const UilImageSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageSlash; \ No newline at end of file diff --git a/icons/uil-image-times.js b/icons/uil-image-times.js index ff223fdb..c84e1dd0 100644 --- a/icons/uil-image-times.js +++ b/icons/uil-image-times.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageTimes = (props) => { - const { color, size, ...otherProps } = props +const UilImageTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageTimes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageTimes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageTimes; \ No newline at end of file diff --git a/icons/uil-image-upload.js b/icons/uil-image-upload.js index 0bcc6bba..f481af59 100644 --- a/icons/uil-image-upload.js +++ b/icons/uil-image-upload.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageUpload = (props) => { - const { color, size, ...otherProps } = props +const UilImageUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageUpload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageUpload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageUpload; \ No newline at end of file diff --git a/icons/uil-image-v.js b/icons/uil-image-v.js index 7710c52f..def92ec2 100644 --- a/icons/uil-image-v.js +++ b/icons/uil-image-v.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImageV = (props) => { - const { color, size, ...otherProps } = props +const UilImageV = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImageV.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImageV.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImageV; \ No newline at end of file diff --git a/icons/uil-image.js b/icons/uil-image.js index 191f65fd..f5253ff5 100644 --- a/icons/uil-image.js +++ b/icons/uil-image.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImage = (props) => { - const { color, size, ...otherProps } = props +const UilImage = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImage.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImage.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImage; \ No newline at end of file diff --git a/icons/uil-images.js b/icons/uil-images.js index 89c8eaf1..8bb0a941 100644 --- a/icons/uil-images.js +++ b/icons/uil-images.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImages = (props) => { - const { color, size, ...otherProps } = props +const UilImages = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImages.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImages.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImages; \ No newline at end of file diff --git a/icons/uil-import.js b/icons/uil-import.js index f7fd24d9..5c10006a 100644 --- a/icons/uil-import.js +++ b/icons/uil-import.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilImport = (props) => { - const { color, size, ...otherProps } = props +const UilImport = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilImport.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilImport.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilImport; \ No newline at end of file diff --git a/icons/uil-inbox.js b/icons/uil-inbox.js index dd9c18fd..e51e5d01 100644 --- a/icons/uil-inbox.js +++ b/icons/uil-inbox.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilInbox = (props) => { - const { color, size, ...otherProps } = props +const UilInbox = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilInbox.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilInbox.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilInbox; \ No newline at end of file diff --git a/icons/uil-incoming-call.js b/icons/uil-incoming-call.js index 0db1b47f..dbd24dcf 100644 --- a/icons/uil-incoming-call.js +++ b/icons/uil-incoming-call.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilIncomingCall = (props) => { - const { color, size, ...otherProps } = props +const UilIncomingCall = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilIncomingCall.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilIncomingCall.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilIncomingCall; \ No newline at end of file diff --git a/icons/uil-info-circle.js b/icons/uil-info-circle.js index 305e4246..5ff6c985 100644 --- a/icons/uil-info-circle.js +++ b/icons/uil-info-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilInfoCircle = (props) => { - const { color, size, ...otherProps } = props +const UilInfoCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilInfoCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilInfoCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilInfoCircle; \ No newline at end of file diff --git a/icons/uil-info.js b/icons/uil-info.js index 1792c816..dad291d1 100644 --- a/icons/uil-info.js +++ b/icons/uil-info.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilInfo = (props) => { - const { color, size, ...otherProps } = props +const UilInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilInfo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilInfo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilInfo; \ No newline at end of file diff --git a/icons/uil-instagram-alt.js b/icons/uil-instagram-alt.js index b8b44af1..9a53a232 100644 --- a/icons/uil-instagram-alt.js +++ b/icons/uil-instagram-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilInstagramAlt = (props) => { - const { color, size, ...otherProps } = props +const UilInstagramAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilInstagramAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilInstagramAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilInstagramAlt; \ No newline at end of file diff --git a/icons/uil-instagram.js b/icons/uil-instagram.js index c937addf..b63884de 100644 --- a/icons/uil-instagram.js +++ b/icons/uil-instagram.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilInstagram = (props) => { - const { color, size, ...otherProps } = props +const UilInstagram = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilInstagram.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilInstagram.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilInstagram; \ No newline at end of file diff --git a/icons/uil-intercom-alt.js b/icons/uil-intercom-alt.js index daf09c26..cc37a63e 100644 --- a/icons/uil-intercom-alt.js +++ b/icons/uil-intercom-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilIntercomAlt = (props) => { - const { color, size, ...otherProps } = props +const UilIntercomAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilIntercomAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilIntercomAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilIntercomAlt; \ No newline at end of file diff --git a/icons/uil-intercom.js b/icons/uil-intercom.js index f040e214..1bcc24ce 100644 --- a/icons/uil-intercom.js +++ b/icons/uil-intercom.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilIntercom = (props) => { - const { color, size, ...otherProps } = props +const UilIntercom = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilIntercom.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilIntercom.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilIntercom; \ No newline at end of file diff --git a/icons/uil-invoice.js b/icons/uil-invoice.js index b6437997..e8a9af40 100644 --- a/icons/uil-invoice.js +++ b/icons/uil-invoice.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilInvoice = (props) => { - const { color, size, ...otherProps } = props +const UilInvoice = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilInvoice.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilInvoice.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilInvoice; \ No newline at end of file diff --git a/icons/uil-italic.js b/icons/uil-italic.js index 04223215..0c1cc4f9 100644 --- a/icons/uil-italic.js +++ b/icons/uil-italic.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilItalic = (props) => { - const { color, size, ...otherProps } = props +const UilItalic = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilItalic.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilItalic.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilItalic; \ No newline at end of file diff --git a/icons/uil-jackhammer.js b/icons/uil-jackhammer.js index 2015b45e..1e85bdfb 100644 --- a/icons/uil-jackhammer.js +++ b/icons/uil-jackhammer.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilJackhammer = (props) => { - const { color, size, ...otherProps } = props +const UilJackhammer = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilJackhammer.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilJackhammer.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilJackhammer; \ No newline at end of file diff --git a/icons/uil-java-script.js b/icons/uil-java-script.js index b9c3887d..5d77cc5b 100644 --- a/icons/uil-java-script.js +++ b/icons/uil-java-script.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilJavaScript = (props) => { - const { color, size, ...otherProps } = props +const UilJavaScript = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilJavaScript.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilJavaScript.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilJavaScript; \ No newline at end of file diff --git a/icons/uil-kayak.js b/icons/uil-kayak.js index 2f496066..9b7ce218 100644 --- a/icons/uil-kayak.js +++ b/icons/uil-kayak.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilKayak = (props) => { - const { color, size, ...otherProps } = props +const UilKayak = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilKayak.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilKayak.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilKayak; \ No newline at end of file diff --git a/icons/uil-key-skeleton-alt.js b/icons/uil-key-skeleton-alt.js index c545028a..a71b0bdc 100644 --- a/icons/uil-key-skeleton-alt.js +++ b/icons/uil-key-skeleton-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilKeySkeletonAlt = (props) => { - const { color, size, ...otherProps } = props +const UilKeySkeletonAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilKeySkeletonAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilKeySkeletonAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilKeySkeletonAlt; \ No newline at end of file diff --git a/icons/uil-key-skeleton.js b/icons/uil-key-skeleton.js index 89b20c31..9c6f9fcf 100644 --- a/icons/uil-key-skeleton.js +++ b/icons/uil-key-skeleton.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilKeySkeleton = (props) => { - const { color, size, ...otherProps } = props +const UilKeySkeleton = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilKeySkeleton.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilKeySkeleton.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilKeySkeleton; \ No newline at end of file diff --git a/icons/uil-keyboard-alt.js b/icons/uil-keyboard-alt.js index b85b62a7..0be81c93 100644 --- a/icons/uil-keyboard-alt.js +++ b/icons/uil-keyboard-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilKeyboardAlt = (props) => { - const { color, size, ...otherProps } = props +const UilKeyboardAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilKeyboardAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilKeyboardAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilKeyboardAlt; \ No newline at end of file diff --git a/icons/uil-keyboard-hide.js b/icons/uil-keyboard-hide.js index 06fef906..66932afa 100644 --- a/icons/uil-keyboard-hide.js +++ b/icons/uil-keyboard-hide.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilKeyboardHide = (props) => { - const { color, size, ...otherProps } = props +const UilKeyboardHide = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilKeyboardHide.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilKeyboardHide.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilKeyboardHide; \ No newline at end of file diff --git a/icons/uil-keyboard-show.js b/icons/uil-keyboard-show.js index 5d7749bd..ed57be93 100644 --- a/icons/uil-keyboard-show.js +++ b/icons/uil-keyboard-show.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilKeyboardShow = (props) => { - const { color, size, ...otherProps } = props +const UilKeyboardShow = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilKeyboardShow.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilKeyboardShow.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilKeyboardShow; \ No newline at end of file diff --git a/icons/uil-keyboard.js b/icons/uil-keyboard.js index 1de27b9b..ec626be2 100644 --- a/icons/uil-keyboard.js +++ b/icons/uil-keyboard.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilKeyboard = (props) => { - const { color, size, ...otherProps } = props +const UilKeyboard = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilKeyboard.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilKeyboard.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilKeyboard; \ No newline at end of file diff --git a/icons/uil-keyhole-circle.js b/icons/uil-keyhole-circle.js index 8387193e..c0b30231 100644 --- a/icons/uil-keyhole-circle.js +++ b/icons/uil-keyhole-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilKeyholeCircle = (props) => { - const { color, size, ...otherProps } = props +const UilKeyholeCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilKeyholeCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilKeyholeCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilKeyholeCircle; \ No newline at end of file diff --git a/icons/uil-keyhole-square-full.js b/icons/uil-keyhole-square-full.js index a19bae8e..80127185 100644 --- a/icons/uil-keyhole-square-full.js +++ b/icons/uil-keyhole-square-full.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilKeyholeSquareFull = (props) => { - const { color, size, ...otherProps } = props +const UilKeyholeSquareFull = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilKeyholeSquareFull.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilKeyholeSquareFull.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilKeyholeSquareFull; \ No newline at end of file diff --git a/icons/uil-keyhole-square.js b/icons/uil-keyhole-square.js index 0b473543..8bb4b875 100644 --- a/icons/uil-keyhole-square.js +++ b/icons/uil-keyhole-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilKeyholeSquare = (props) => { - const { color, size, ...otherProps } = props +const UilKeyholeSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilKeyholeSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilKeyholeSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilKeyholeSquare; \ No newline at end of file diff --git a/icons/uil-kid.js b/icons/uil-kid.js index 8a974404..d06f4f2b 100644 --- a/icons/uil-kid.js +++ b/icons/uil-kid.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilKid = (props) => { - const { color, size, ...otherProps } = props +const UilKid = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilKid.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilKid.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilKid; \ No newline at end of file diff --git a/icons/uil-label-alt.js b/icons/uil-label-alt.js index 31f8da6e..75da7d0e 100644 --- a/icons/uil-label-alt.js +++ b/icons/uil-label-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLabelAlt = (props) => { - const { color, size, ...otherProps } = props +const UilLabelAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLabelAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLabelAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLabelAlt; \ No newline at end of file diff --git a/icons/uil-label.js b/icons/uil-label.js index 05ba513e..95955ca6 100644 --- a/icons/uil-label.js +++ b/icons/uil-label.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLabel = (props) => { - const { color, size, ...otherProps } = props +const UilLabel = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLabel.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLabel.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLabel; \ No newline at end of file diff --git a/icons/uil-lamp.js b/icons/uil-lamp.js index 68f262ba..1b1dd37a 100644 --- a/icons/uil-lamp.js +++ b/icons/uil-lamp.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLamp = (props) => { - const { color, size, ...otherProps } = props +const UilLamp = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLamp.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLamp.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLamp; \ No newline at end of file diff --git a/icons/uil-language.js b/icons/uil-language.js index d3cfbffe..210445bc 100644 --- a/icons/uil-language.js +++ b/icons/uil-language.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLanguage = (props) => { - const { color, size, ...otherProps } = props +const UilLanguage = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLanguage.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLanguage.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLanguage; \ No newline at end of file diff --git a/icons/uil-laptop-cloud.js b/icons/uil-laptop-cloud.js index 94c2ad4a..5189034c 100644 --- a/icons/uil-laptop-cloud.js +++ b/icons/uil-laptop-cloud.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLaptopCloud = (props) => { - const { color, size, ...otherProps } = props +const UilLaptopCloud = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLaptopCloud.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLaptopCloud.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLaptopCloud; \ No newline at end of file diff --git a/icons/uil-laptop-connection.js b/icons/uil-laptop-connection.js index 2b3fb496..f82c098a 100644 --- a/icons/uil-laptop-connection.js +++ b/icons/uil-laptop-connection.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLaptopConnection = (props) => { - const { color, size, ...otherProps } = props +const UilLaptopConnection = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLaptopConnection.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLaptopConnection.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLaptopConnection; \ No newline at end of file diff --git a/icons/uil-laptop.js b/icons/uil-laptop.js index 6e785ace..0b85044f 100644 --- a/icons/uil-laptop.js +++ b/icons/uil-laptop.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLaptop = (props) => { - const { color, size, ...otherProps } = props +const UilLaptop = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLaptop.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLaptop.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLaptop; \ No newline at end of file diff --git a/icons/uil-laughing.js b/icons/uil-laughing.js index 400b6812..73dbb8de 100644 --- a/icons/uil-laughing.js +++ b/icons/uil-laughing.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLaughing = (props) => { - const { color, size, ...otherProps } = props +const UilLaughing = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLaughing.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLaughing.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLaughing; \ No newline at end of file diff --git a/icons/uil-layer-group-slash.js b/icons/uil-layer-group-slash.js index dc7a20bf..f9f96a98 100644 --- a/icons/uil-layer-group-slash.js +++ b/icons/uil-layer-group-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLayerGroupSlash = (props) => { - const { color, size, ...otherProps } = props +const UilLayerGroupSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLayerGroupSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLayerGroupSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLayerGroupSlash; \ No newline at end of file diff --git a/icons/uil-layer-group.js b/icons/uil-layer-group.js index 97011e83..931d5e69 100644 --- a/icons/uil-layer-group.js +++ b/icons/uil-layer-group.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLayerGroup = (props) => { - const { color, size, ...otherProps } = props +const UilLayerGroup = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLayerGroup.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLayerGroup.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLayerGroup; \ No newline at end of file diff --git a/icons/uil-layers-alt.js b/icons/uil-layers-alt.js index e6ba8620..03e911bf 100644 --- a/icons/uil-layers-alt.js +++ b/icons/uil-layers-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLayersAlt = (props) => { - const { color, size, ...otherProps } = props +const UilLayersAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLayersAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLayersAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLayersAlt; \ No newline at end of file diff --git a/icons/uil-layers-slash.js b/icons/uil-layers-slash.js index 348dfd05..c57041bb 100644 --- a/icons/uil-layers-slash.js +++ b/icons/uil-layers-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLayersSlash = (props) => { - const { color, size, ...otherProps } = props +const UilLayersSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLayersSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLayersSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLayersSlash; \ No newline at end of file diff --git a/icons/uil-layers.js b/icons/uil-layers.js index 4a9fa398..269028da 100644 --- a/icons/uil-layers.js +++ b/icons/uil-layers.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLayers = (props) => { - const { color, size, ...otherProps } = props +const UilLayers = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLayers.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLayers.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLayers; \ No newline at end of file diff --git a/icons/uil-left-arrow-from-left.js b/icons/uil-left-arrow-from-left.js index c61ba253..2322d4ab 100644 --- a/icons/uil-left-arrow-from-left.js +++ b/icons/uil-left-arrow-from-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLeftArrowFromLeft = (props) => { - const { color, size, ...otherProps } = props +const UilLeftArrowFromLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLeftArrowFromLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLeftArrowFromLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLeftArrowFromLeft; \ No newline at end of file diff --git a/icons/uil-left-arrow-to-left.js b/icons/uil-left-arrow-to-left.js index 696fcebe..e24e168d 100644 --- a/icons/uil-left-arrow-to-left.js +++ b/icons/uil-left-arrow-to-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLeftArrowToLeft = (props) => { - const { color, size, ...otherProps } = props +const UilLeftArrowToLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLeftArrowToLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLeftArrowToLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLeftArrowToLeft; \ No newline at end of file diff --git a/icons/uil-left-indent-alt.js b/icons/uil-left-indent-alt.js index dd5c2842..18386ae8 100644 --- a/icons/uil-left-indent-alt.js +++ b/icons/uil-left-indent-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLeftIndentAlt = (props) => { - const { color, size, ...otherProps } = props +const UilLeftIndentAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLeftIndentAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLeftIndentAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLeftIndentAlt; \ No newline at end of file diff --git a/icons/uil-left-indent.js b/icons/uil-left-indent.js index ae8d121c..b794ef45 100644 --- a/icons/uil-left-indent.js +++ b/icons/uil-left-indent.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLeftIndent = (props) => { - const { color, size, ...otherProps } = props +const UilLeftIndent = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLeftIndent.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLeftIndent.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLeftIndent; \ No newline at end of file diff --git a/icons/uil-left-to-right-text-direction.js b/icons/uil-left-to-right-text-direction.js index fbac0587..655d3bd3 100644 --- a/icons/uil-left-to-right-text-direction.js +++ b/icons/uil-left-to-right-text-direction.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLeftToRightTextDirection = (props) => { - const { color, size, ...otherProps } = props +const UilLeftToRightTextDirection = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLeftToRightTextDirection.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLeftToRightTextDirection.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLeftToRightTextDirection; \ No newline at end of file diff --git a/icons/uil-letter-chinese-a.js b/icons/uil-letter-chinese-a.js index b220e215..44047afe 100644 --- a/icons/uil-letter-chinese-a.js +++ b/icons/uil-letter-chinese-a.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLetterChineseA = (props) => { - const { color, size, ...otherProps } = props +const UilLetterChineseA = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLetterChineseA.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLetterChineseA.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLetterChineseA; \ No newline at end of file diff --git a/icons/uil-letter-english-a.js b/icons/uil-letter-english-a.js index 65344143..de568ef2 100644 --- a/icons/uil-letter-english-a.js +++ b/icons/uil-letter-english-a.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLetterEnglishA = (props) => { - const { color, size, ...otherProps } = props +const UilLetterEnglishA = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLetterEnglishA.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLetterEnglishA.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLetterEnglishA; \ No newline at end of file diff --git a/icons/uil-letter-hindi-a.js b/icons/uil-letter-hindi-a.js index f7abe146..b1c77aaa 100644 --- a/icons/uil-letter-hindi-a.js +++ b/icons/uil-letter-hindi-a.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLetterHindiA = (props) => { - const { color, size, ...otherProps } = props +const UilLetterHindiA = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLetterHindiA.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLetterHindiA.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLetterHindiA; \ No newline at end of file diff --git a/icons/uil-letter-japanese-a.js b/icons/uil-letter-japanese-a.js index 8985313c..cf39f8cd 100644 --- a/icons/uil-letter-japanese-a.js +++ b/icons/uil-letter-japanese-a.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLetterJapaneseA = (props) => { - const { color, size, ...otherProps } = props +const UilLetterJapaneseA = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLetterJapaneseA.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLetterJapaneseA.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLetterJapaneseA; \ No newline at end of file diff --git a/icons/uil-life-ring.js b/icons/uil-life-ring.js index 5070bbd0..d9f8b4ad 100644 --- a/icons/uil-life-ring.js +++ b/icons/uil-life-ring.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLifeRing = (props) => { - const { color, size, ...otherProps } = props +const UilLifeRing = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLifeRing.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLifeRing.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLifeRing; \ No newline at end of file diff --git a/icons/uil-lightbulb-alt.js b/icons/uil-lightbulb-alt.js index 50d7a237..f8328543 100644 --- a/icons/uil-lightbulb-alt.js +++ b/icons/uil-lightbulb-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLightbulbAlt = (props) => { - const { color, size, ...otherProps } = props +const UilLightbulbAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLightbulbAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLightbulbAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLightbulbAlt; \ No newline at end of file diff --git a/icons/uil-lightbulb.js b/icons/uil-lightbulb.js index f7078027..42851eca 100644 --- a/icons/uil-lightbulb.js +++ b/icons/uil-lightbulb.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLightbulb = (props) => { - const { color, size, ...otherProps } = props +const UilLightbulb = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLightbulb.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLightbulb.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLightbulb; \ No newline at end of file diff --git a/icons/uil-line-alt.js b/icons/uil-line-alt.js index 82da3563..2ae4b8df 100644 --- a/icons/uil-line-alt.js +++ b/icons/uil-line-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLineAlt = (props) => { - const { color, size, ...otherProps } = props +const UilLineAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLineAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLineAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLineAlt; \ No newline at end of file diff --git a/icons/uil-line-spacing.js b/icons/uil-line-spacing.js index e85218b2..b4855c3b 100644 --- a/icons/uil-line-spacing.js +++ b/icons/uil-line-spacing.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLineSpacing = (props) => { - const { color, size, ...otherProps } = props +const UilLineSpacing = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLineSpacing.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLineSpacing.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLineSpacing; \ No newline at end of file diff --git a/icons/uil-line.js b/icons/uil-line.js index 05fbce57..14f8aca6 100644 --- a/icons/uil-line.js +++ b/icons/uil-line.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLine = (props) => { - const { color, size, ...otherProps } = props +const UilLine = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLine.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLine.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLine; \ No newline at end of file diff --git a/icons/uil-link-add.js b/icons/uil-link-add.js index 801afdc9..f91907de 100644 --- a/icons/uil-link-add.js +++ b/icons/uil-link-add.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLinkAdd = (props) => { - const { color, size, ...otherProps } = props +const UilLinkAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLinkAdd.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLinkAdd.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLinkAdd; \ No newline at end of file diff --git a/icons/uil-link-alt.js b/icons/uil-link-alt.js index b677f8e3..b7d64745 100644 --- a/icons/uil-link-alt.js +++ b/icons/uil-link-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLinkAlt = (props) => { - const { color, size, ...otherProps } = props +const UilLinkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLinkAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLinkAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLinkAlt; \ No newline at end of file diff --git a/icons/uil-link-broken.js b/icons/uil-link-broken.js index 6730a5e3..184346cb 100644 --- a/icons/uil-link-broken.js +++ b/icons/uil-link-broken.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLinkBroken = (props) => { - const { color, size, ...otherProps } = props +const UilLinkBroken = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLinkBroken.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLinkBroken.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLinkBroken; \ No newline at end of file diff --git a/icons/uil-link-h.js b/icons/uil-link-h.js index bd4967b8..1dc6da5a 100644 --- a/icons/uil-link-h.js +++ b/icons/uil-link-h.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLinkH = (props) => { - const { color, size, ...otherProps } = props +const UilLinkH = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLinkH.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLinkH.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLinkH; \ No newline at end of file diff --git a/icons/uil-link.js b/icons/uil-link.js index ff9e4069..1610e3e5 100644 --- a/icons/uil-link.js +++ b/icons/uil-link.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLink = (props) => { - const { color, size, ...otherProps } = props +const UilLink = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLink.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLink.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLink; \ No newline at end of file diff --git a/icons/uil-linkedin-alt.js b/icons/uil-linkedin-alt.js index 28972420..498c016c 100644 --- a/icons/uil-linkedin-alt.js +++ b/icons/uil-linkedin-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLinkedinAlt = (props) => { - const { color, size, ...otherProps } = props +const UilLinkedinAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLinkedinAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLinkedinAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLinkedinAlt; \ No newline at end of file diff --git a/icons/uil-linkedin.js b/icons/uil-linkedin.js index 247efc6d..4a1e0167 100644 --- a/icons/uil-linkedin.js +++ b/icons/uil-linkedin.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLinkedin = (props) => { - const { color, size, ...otherProps } = props +const UilLinkedin = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLinkedin.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLinkedin.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLinkedin; \ No newline at end of file diff --git a/icons/uil-linux.js b/icons/uil-linux.js index 1f7a3720..d4f4eba6 100644 --- a/icons/uil-linux.js +++ b/icons/uil-linux.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLinux = (props) => { - const { color, size, ...otherProps } = props +const UilLinux = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLinux.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLinux.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLinux; \ No newline at end of file diff --git a/icons/uil-lira-sign.js b/icons/uil-lira-sign.js index 1853ed2b..13cc579d 100644 --- a/icons/uil-lira-sign.js +++ b/icons/uil-lira-sign.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLiraSign = (props) => { - const { color, size, ...otherProps } = props +const UilLiraSign = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLiraSign.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLiraSign.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLiraSign; \ No newline at end of file diff --git a/icons/uil-list-ol-alt.js b/icons/uil-list-ol-alt.js index ddf98606..e3e00d39 100644 --- a/icons/uil-list-ol-alt.js +++ b/icons/uil-list-ol-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilListOlAlt = (props) => { - const { color, size, ...otherProps } = props +const UilListOlAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilListOlAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilListOlAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilListOlAlt; \ No newline at end of file diff --git a/icons/uil-list-ol.js b/icons/uil-list-ol.js index 2bf0badc..b5407d76 100644 --- a/icons/uil-list-ol.js +++ b/icons/uil-list-ol.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilListOl = (props) => { - const { color, size, ...otherProps } = props +const UilListOl = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilListOl.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilListOl.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilListOl; \ No newline at end of file diff --git a/icons/uil-list-ui-alt.js b/icons/uil-list-ui-alt.js index 07921621..76c8db5c 100644 --- a/icons/uil-list-ui-alt.js +++ b/icons/uil-list-ui-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilListUiAlt = (props) => { - const { color, size, ...otherProps } = props +const UilListUiAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilListUiAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilListUiAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilListUiAlt; \ No newline at end of file diff --git a/icons/uil-list-ul.js b/icons/uil-list-ul.js index 9cb735f8..906a5fa2 100644 --- a/icons/uil-list-ul.js +++ b/icons/uil-list-ul.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilListUl = (props) => { - const { color, size, ...otherProps } = props +const UilListUl = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilListUl.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilListUl.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilListUl; \ No newline at end of file diff --git a/icons/uil-location-arrow-alt.js b/icons/uil-location-arrow-alt.js index 6a3b4428..e26dd1d8 100644 --- a/icons/uil-location-arrow-alt.js +++ b/icons/uil-location-arrow-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLocationArrowAlt = (props) => { - const { color, size, ...otherProps } = props +const UilLocationArrowAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLocationArrowAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLocationArrowAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLocationArrowAlt; \ No newline at end of file diff --git a/icons/uil-location-arrow.js b/icons/uil-location-arrow.js index 94f55dcf..24d474a7 100644 --- a/icons/uil-location-arrow.js +++ b/icons/uil-location-arrow.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLocationArrow = (props) => { - const { color, size, ...otherProps } = props +const UilLocationArrow = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLocationArrow.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLocationArrow.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLocationArrow; \ No newline at end of file diff --git a/icons/uil-location-pin-alt.js b/icons/uil-location-pin-alt.js index 6fa5d8af..f03fb80b 100644 --- a/icons/uil-location-pin-alt.js +++ b/icons/uil-location-pin-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLocationPinAlt = (props) => { - const { color, size, ...otherProps } = props +const UilLocationPinAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLocationPinAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLocationPinAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLocationPinAlt; \ No newline at end of file diff --git a/icons/uil-location-point.js b/icons/uil-location-point.js index e501d62c..7945c0a3 100644 --- a/icons/uil-location-point.js +++ b/icons/uil-location-point.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLocationPoint = (props) => { - const { color, size, ...otherProps } = props +const UilLocationPoint = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLocationPoint.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLocationPoint.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLocationPoint; \ No newline at end of file diff --git a/icons/uil-lock-access.js b/icons/uil-lock-access.js index 175e4c95..8362d0ab 100644 --- a/icons/uil-lock-access.js +++ b/icons/uil-lock-access.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLockAccess = (props) => { - const { color, size, ...otherProps } = props +const UilLockAccess = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLockAccess.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLockAccess.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLockAccess; \ No newline at end of file diff --git a/icons/uil-lock-alt.js b/icons/uil-lock-alt.js index 8bbf61d5..145b8ab8 100644 --- a/icons/uil-lock-alt.js +++ b/icons/uil-lock-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLockAlt = (props) => { - const { color, size, ...otherProps } = props +const UilLockAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLockAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLockAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLockAlt; \ No newline at end of file diff --git a/icons/uil-lock-open-alt.js b/icons/uil-lock-open-alt.js index 36de3a70..d49fe14f 100644 --- a/icons/uil-lock-open-alt.js +++ b/icons/uil-lock-open-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLockOpenAlt = (props) => { - const { color, size, ...otherProps } = props +const UilLockOpenAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLockOpenAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLockOpenAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLockOpenAlt; \ No newline at end of file diff --git a/icons/uil-lock-slash.js b/icons/uil-lock-slash.js index 66a18d1e..8fe7fc71 100644 --- a/icons/uil-lock-slash.js +++ b/icons/uil-lock-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLockSlash = (props) => { - const { color, size, ...otherProps } = props +const UilLockSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLockSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLockSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLockSlash; \ No newline at end of file diff --git a/icons/uil-lock.js b/icons/uil-lock.js index d572492c..bffc3e10 100644 --- a/icons/uil-lock.js +++ b/icons/uil-lock.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLock = (props) => { - const { color, size, ...otherProps } = props +const UilLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLock; \ No newline at end of file diff --git a/icons/uil-lottiefiles-alt.js b/icons/uil-lottiefiles-alt.js index 42b1706b..2814239c 100644 --- a/icons/uil-lottiefiles-alt.js +++ b/icons/uil-lottiefiles-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLottiefilesAlt = (props) => { - const { color, size, ...otherProps } = props +const UilLottiefilesAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLottiefilesAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLottiefilesAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLottiefilesAlt; \ No newline at end of file diff --git a/icons/uil-lottiefiles.js b/icons/uil-lottiefiles.js index fdddcbb2..2ba97254 100644 --- a/icons/uil-lottiefiles.js +++ b/icons/uil-lottiefiles.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLottiefiles = (props) => { - const { color, size, ...otherProps } = props +const UilLottiefiles = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLottiefiles.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLottiefiles.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLottiefiles; \ No newline at end of file diff --git a/icons/uil-luggage-cart.js b/icons/uil-luggage-cart.js index c1781609..bb592288 100644 --- a/icons/uil-luggage-cart.js +++ b/icons/uil-luggage-cart.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilLuggageCart = (props) => { - const { color, size, ...otherProps } = props +const UilLuggageCart = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilLuggageCart.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilLuggageCart.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilLuggageCart; \ No newline at end of file diff --git a/icons/uil-mailbox-alt.js b/icons/uil-mailbox-alt.js index 0e0a8916..1792cf2a 100644 --- a/icons/uil-mailbox-alt.js +++ b/icons/uil-mailbox-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMailboxAlt = (props) => { - const { color, size, ...otherProps } = props +const UilMailboxAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMailboxAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMailboxAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMailboxAlt; \ No newline at end of file diff --git a/icons/uil-mailbox.js b/icons/uil-mailbox.js index 06176935..e757818b 100644 --- a/icons/uil-mailbox.js +++ b/icons/uil-mailbox.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMailbox = (props) => { - const { color, size, ...otherProps } = props +const UilMailbox = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMailbox.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMailbox.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMailbox; \ No newline at end of file diff --git a/icons/uil-map-marker-alt.js b/icons/uil-map-marker-alt.js index cb86c98f..e91377d6 100644 --- a/icons/uil-map-marker-alt.js +++ b/icons/uil-map-marker-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMapMarkerAlt = (props) => { - const { color, size, ...otherProps } = props +const UilMapMarkerAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMapMarkerAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMapMarkerAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMapMarkerAlt; \ No newline at end of file diff --git a/icons/uil-map-marker-edit.js b/icons/uil-map-marker-edit.js index af7369b4..d3495ed2 100644 --- a/icons/uil-map-marker-edit.js +++ b/icons/uil-map-marker-edit.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMapMarkerEdit = (props) => { - const { color, size, ...otherProps } = props +const UilMapMarkerEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMapMarkerEdit.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMapMarkerEdit.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMapMarkerEdit; \ No newline at end of file diff --git a/icons/uil-map-marker-info.js b/icons/uil-map-marker-info.js index 23d8ae46..72da84d3 100644 --- a/icons/uil-map-marker-info.js +++ b/icons/uil-map-marker-info.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMapMarkerInfo = (props) => { - const { color, size, ...otherProps } = props +const UilMapMarkerInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMapMarkerInfo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMapMarkerInfo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMapMarkerInfo; \ No newline at end of file diff --git a/icons/uil-map-marker-minus.js b/icons/uil-map-marker-minus.js index 6b508149..b993cd57 100644 --- a/icons/uil-map-marker-minus.js +++ b/icons/uil-map-marker-minus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMapMarkerMinus = (props) => { - const { color, size, ...otherProps } = props +const UilMapMarkerMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMapMarkerMinus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMapMarkerMinus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMapMarkerMinus; \ No newline at end of file diff --git a/icons/uil-map-marker-plus.js b/icons/uil-map-marker-plus.js index 7dbe616a..95064e71 100644 --- a/icons/uil-map-marker-plus.js +++ b/icons/uil-map-marker-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMapMarkerPlus = (props) => { - const { color, size, ...otherProps } = props +const UilMapMarkerPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMapMarkerPlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMapMarkerPlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMapMarkerPlus; \ No newline at end of file diff --git a/icons/uil-map-marker-question.js b/icons/uil-map-marker-question.js index df0b0383..8607281c 100644 --- a/icons/uil-map-marker-question.js +++ b/icons/uil-map-marker-question.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMapMarkerQuestion = (props) => { - const { color, size, ...otherProps } = props +const UilMapMarkerQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMapMarkerQuestion.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMapMarkerQuestion.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMapMarkerQuestion; \ No newline at end of file diff --git a/icons/uil-map-marker-shield.js b/icons/uil-map-marker-shield.js index de26d85a..01026009 100644 --- a/icons/uil-map-marker-shield.js +++ b/icons/uil-map-marker-shield.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMapMarkerShield = (props) => { - const { color, size, ...otherProps } = props +const UilMapMarkerShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMapMarkerShield.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMapMarkerShield.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMapMarkerShield; \ No newline at end of file diff --git a/icons/uil-map-marker-slash.js b/icons/uil-map-marker-slash.js index 08654f71..004b158f 100644 --- a/icons/uil-map-marker-slash.js +++ b/icons/uil-map-marker-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMapMarkerSlash = (props) => { - const { color, size, ...otherProps } = props +const UilMapMarkerSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMapMarkerSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMapMarkerSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMapMarkerSlash; \ No newline at end of file diff --git a/icons/uil-map-marker.js b/icons/uil-map-marker.js index a619782e..ed5375d9 100644 --- a/icons/uil-map-marker.js +++ b/icons/uil-map-marker.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMapMarker = (props) => { - const { color, size, ...otherProps } = props +const UilMapMarker = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMapMarker.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMapMarker.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMapMarker; \ No newline at end of file diff --git a/icons/uil-map-pin-alt.js b/icons/uil-map-pin-alt.js index ed814864..b03e5335 100644 --- a/icons/uil-map-pin-alt.js +++ b/icons/uil-map-pin-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMapPinAlt = (props) => { - const { color, size, ...otherProps } = props +const UilMapPinAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMapPinAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMapPinAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMapPinAlt; \ No newline at end of file diff --git a/icons/uil-map-pin.js b/icons/uil-map-pin.js index 25a54538..024547b9 100644 --- a/icons/uil-map-pin.js +++ b/icons/uil-map-pin.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMapPin = (props) => { - const { color, size, ...otherProps } = props +const UilMapPin = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMapPin.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMapPin.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMapPin; \ No newline at end of file diff --git a/icons/uil-map.js b/icons/uil-map.js index 94894493..e46f09bf 100644 --- a/icons/uil-map.js +++ b/icons/uil-map.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMap = (props) => { - const { color, size, ...otherProps } = props +const UilMap = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMap.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMap.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMap; \ No newline at end of file diff --git a/icons/uil-mars.js b/icons/uil-mars.js index f59ea084..136fe26e 100644 --- a/icons/uil-mars.js +++ b/icons/uil-mars.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMars = (props) => { - const { color, size, ...otherProps } = props +const UilMars = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMars.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMars.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMars; \ No newline at end of file diff --git a/icons/uil-master-card.js b/icons/uil-master-card.js index 90612278..297e6e15 100644 --- a/icons/uil-master-card.js +++ b/icons/uil-master-card.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMasterCard = (props) => { - const { color, size, ...otherProps } = props +const UilMasterCard = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMasterCard.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMasterCard.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMasterCard; \ No newline at end of file diff --git a/icons/uil-maximize-left.js b/icons/uil-maximize-left.js index 2c650ebc..7ec7780e 100644 --- a/icons/uil-maximize-left.js +++ b/icons/uil-maximize-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMaximizeLeft = (props) => { - const { color, size, ...otherProps } = props +const UilMaximizeLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMaximizeLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMaximizeLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMaximizeLeft; \ No newline at end of file diff --git a/icons/uil-medal.js b/icons/uil-medal.js index e58cacc9..72a01e8d 100644 --- a/icons/uil-medal.js +++ b/icons/uil-medal.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMedal = (props) => { - const { color, size, ...otherProps } = props +const UilMedal = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMedal.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMedal.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMedal; \ No newline at end of file diff --git a/icons/uil-medical-drip.js b/icons/uil-medical-drip.js index 0b22d408..34440ecd 100644 --- a/icons/uil-medical-drip.js +++ b/icons/uil-medical-drip.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMedicalDrip = (props) => { - const { color, size, ...otherProps } = props +const UilMedicalDrip = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMedicalDrip.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMedicalDrip.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMedicalDrip; \ No newline at end of file diff --git a/icons/uil-medical-square-full.js b/icons/uil-medical-square-full.js index f00d1d63..ad969c4c 100644 --- a/icons/uil-medical-square-full.js +++ b/icons/uil-medical-square-full.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMedicalSquareFull = (props) => { - const { color, size, ...otherProps } = props +const UilMedicalSquareFull = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMedicalSquareFull.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMedicalSquareFull.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMedicalSquareFull; \ No newline at end of file diff --git a/icons/uil-medical-square.js b/icons/uil-medical-square.js index ef6caa19..e64a87ba 100644 --- a/icons/uil-medical-square.js +++ b/icons/uil-medical-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMedicalSquare = (props) => { - const { color, size, ...otherProps } = props +const UilMedicalSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMedicalSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMedicalSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMedicalSquare; \ No newline at end of file diff --git a/icons/uil-medium-m.js b/icons/uil-medium-m.js index 34e8c900..e99a7300 100644 --- a/icons/uil-medium-m.js +++ b/icons/uil-medium-m.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMediumM = (props) => { - const { color, size, ...otherProps } = props +const UilMediumM = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMediumM.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMediumM.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMediumM; \ No newline at end of file diff --git a/icons/uil-medkit.js b/icons/uil-medkit.js index ca84472c..17b906a9 100644 --- a/icons/uil-medkit.js +++ b/icons/uil-medkit.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMedkit = (props) => { - const { color, size, ...otherProps } = props +const UilMedkit = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMedkit.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMedkit.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMedkit; \ No newline at end of file diff --git a/icons/uil-meeting-board.js b/icons/uil-meeting-board.js index 5f9f9d2b..5b386371 100644 --- a/icons/uil-meeting-board.js +++ b/icons/uil-meeting-board.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMeetingBoard = (props) => { - const { color, size, ...otherProps } = props +const UilMeetingBoard = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMeetingBoard.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMeetingBoard.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMeetingBoard; \ No newline at end of file diff --git a/icons/uil-megaphone.js b/icons/uil-megaphone.js index 1d88815b..f61d06cb 100644 --- a/icons/uil-megaphone.js +++ b/icons/uil-megaphone.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMegaphone = (props) => { - const { color, size, ...otherProps } = props +const UilMegaphone = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMegaphone.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMegaphone.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMegaphone; \ No newline at end of file diff --git a/icons/uil-meh-alt.js b/icons/uil-meh-alt.js index 679a8fdb..5405c850 100644 --- a/icons/uil-meh-alt.js +++ b/icons/uil-meh-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMehAlt = (props) => { - const { color, size, ...otherProps } = props +const UilMehAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMehAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMehAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMehAlt; \ No newline at end of file diff --git a/icons/uil-meh-closed-eye.js b/icons/uil-meh-closed-eye.js index fd3e4e18..2ed91e07 100644 --- a/icons/uil-meh-closed-eye.js +++ b/icons/uil-meh-closed-eye.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMehClosedEye = (props) => { - const { color, size, ...otherProps } = props +const UilMehClosedEye = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMehClosedEye.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMehClosedEye.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMehClosedEye; \ No newline at end of file diff --git a/icons/uil-meh.js b/icons/uil-meh.js index 8feeb1a1..055dfb6e 100644 --- a/icons/uil-meh.js +++ b/icons/uil-meh.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMeh = (props) => { - const { color, size, ...otherProps } = props +const UilMeh = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMeh.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMeh.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMeh; \ No newline at end of file diff --git a/icons/uil-message.js b/icons/uil-message.js index 267ae900..d3246784 100644 --- a/icons/uil-message.js +++ b/icons/uil-message.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMessage = (props) => { - const { color, size, ...otherProps } = props +const UilMessage = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMessage.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMessage.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMessage; \ No newline at end of file diff --git a/icons/uil-metro.js b/icons/uil-metro.js index c378ece2..4456b39f 100644 --- a/icons/uil-metro.js +++ b/icons/uil-metro.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMetro = (props) => { - const { color, size, ...otherProps } = props +const UilMetro = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMetro.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMetro.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMetro; \ No newline at end of file diff --git a/icons/uil-microphone-slash.js b/icons/uil-microphone-slash.js index 60f438d7..099b91ad 100644 --- a/icons/uil-microphone-slash.js +++ b/icons/uil-microphone-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMicrophoneSlash = (props) => { - const { color, size, ...otherProps } = props +const UilMicrophoneSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMicrophoneSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMicrophoneSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMicrophoneSlash; \ No newline at end of file diff --git a/icons/uil-microphone.js b/icons/uil-microphone.js index f982bf9f..16e67832 100644 --- a/icons/uil-microphone.js +++ b/icons/uil-microphone.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMicrophone = (props) => { - const { color, size, ...otherProps } = props +const UilMicrophone = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMicrophone.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMicrophone.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMicrophone; \ No newline at end of file diff --git a/icons/uil-microscope.js b/icons/uil-microscope.js index 40340ecc..3409936f 100644 --- a/icons/uil-microscope.js +++ b/icons/uil-microscope.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMicroscope = (props) => { - const { color, size, ...otherProps } = props +const UilMicroscope = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMicroscope.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMicroscope.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMicroscope; \ No newline at end of file diff --git a/icons/uil-microsoft.js b/icons/uil-microsoft.js index 54cc3d69..944ac0d3 100644 --- a/icons/uil-microsoft.js +++ b/icons/uil-microsoft.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMicrosoft = (props) => { - const { color, size, ...otherProps } = props +const UilMicrosoft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMicrosoft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMicrosoft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMicrosoft; \ No newline at end of file diff --git a/icons/uil-minus-circle.js b/icons/uil-minus-circle.js index c8c74e5d..f14fc9f1 100644 --- a/icons/uil-minus-circle.js +++ b/icons/uil-minus-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMinusCircle = (props) => { - const { color, size, ...otherProps } = props +const UilMinusCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMinusCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMinusCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMinusCircle; \ No newline at end of file diff --git a/icons/uil-minus-path.js b/icons/uil-minus-path.js index 7cf9c4c1..7e0cbdd5 100644 --- a/icons/uil-minus-path.js +++ b/icons/uil-minus-path.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMinusPath = (props) => { - const { color, size, ...otherProps } = props +const UilMinusPath = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMinusPath.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMinusPath.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMinusPath; \ No newline at end of file diff --git a/icons/uil-minus-square-full.js b/icons/uil-minus-square-full.js index d1a03b67..5482226c 100644 --- a/icons/uil-minus-square-full.js +++ b/icons/uil-minus-square-full.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMinusSquareFull = (props) => { - const { color, size, ...otherProps } = props +const UilMinusSquareFull = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMinusSquareFull.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMinusSquareFull.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMinusSquareFull; \ No newline at end of file diff --git a/icons/uil-minus-square.js b/icons/uil-minus-square.js index a33067bb..2949b57b 100644 --- a/icons/uil-minus-square.js +++ b/icons/uil-minus-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMinusSquare = (props) => { - const { color, size, ...otherProps } = props +const UilMinusSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMinusSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMinusSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMinusSquare; \ No newline at end of file diff --git a/icons/uil-minus.js b/icons/uil-minus.js index 4cb85dd6..287c362c 100644 --- a/icons/uil-minus.js +++ b/icons/uil-minus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMinus = (props) => { - const { color, size, ...otherProps } = props +const UilMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMinus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMinus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMinus; \ No newline at end of file diff --git a/icons/uil-missed-call.js b/icons/uil-missed-call.js index 582fc920..9b0e8983 100644 --- a/icons/uil-missed-call.js +++ b/icons/uil-missed-call.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMissedCall = (props) => { - const { color, size, ...otherProps } = props +const UilMissedCall = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMissedCall.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMissedCall.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMissedCall; \ No newline at end of file diff --git a/icons/uil-mobile-android-alt.js b/icons/uil-mobile-android-alt.js index 80b5d93d..ca57b954 100644 --- a/icons/uil-mobile-android-alt.js +++ b/icons/uil-mobile-android-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMobileAndroidAlt = (props) => { - const { color, size, ...otherProps } = props +const UilMobileAndroidAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMobileAndroidAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMobileAndroidAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMobileAndroidAlt; \ No newline at end of file diff --git a/icons/uil-mobile-android.js b/icons/uil-mobile-android.js index 6f11028a..79d460a2 100644 --- a/icons/uil-mobile-android.js +++ b/icons/uil-mobile-android.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMobileAndroid = (props) => { - const { color, size, ...otherProps } = props +const UilMobileAndroid = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMobileAndroid.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMobileAndroid.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMobileAndroid; \ No newline at end of file diff --git a/icons/uil-mobile-vibrate.js b/icons/uil-mobile-vibrate.js index 17bb55a0..ca5f3edd 100644 --- a/icons/uil-mobile-vibrate.js +++ b/icons/uil-mobile-vibrate.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMobileVibrate = (props) => { - const { color, size, ...otherProps } = props +const UilMobileVibrate = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMobileVibrate.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMobileVibrate.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMobileVibrate; \ No newline at end of file diff --git a/icons/uil-modem.js b/icons/uil-modem.js index 0291b43c..4194efdb 100644 --- a/icons/uil-modem.js +++ b/icons/uil-modem.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilModem = (props) => { - const { color, size, ...otherProps } = props +const UilModem = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilModem.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilModem.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilModem; \ No newline at end of file diff --git a/icons/uil-money-bill-slash.js b/icons/uil-money-bill-slash.js index c215c95c..8d6eb1df 100644 --- a/icons/uil-money-bill-slash.js +++ b/icons/uil-money-bill-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMoneyBillSlash = (props) => { - const { color, size, ...otherProps } = props +const UilMoneyBillSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMoneyBillSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMoneyBillSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMoneyBillSlash; \ No newline at end of file diff --git a/icons/uil-money-bill-stack.js b/icons/uil-money-bill-stack.js index de09b911..91a76624 100644 --- a/icons/uil-money-bill-stack.js +++ b/icons/uil-money-bill-stack.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMoneyBillStack = (props) => { - const { color, size, ...otherProps } = props +const UilMoneyBillStack = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMoneyBillStack.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMoneyBillStack.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMoneyBillStack; \ No newline at end of file diff --git a/icons/uil-money-bill.js b/icons/uil-money-bill.js index 50d0b629..2a98e93f 100644 --- a/icons/uil-money-bill.js +++ b/icons/uil-money-bill.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMoneyBill = (props) => { - const { color, size, ...otherProps } = props +const UilMoneyBill = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMoneyBill.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMoneyBill.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMoneyBill; \ No newline at end of file diff --git a/icons/uil-money-insert.js b/icons/uil-money-insert.js index 4a918dab..9803e017 100644 --- a/icons/uil-money-insert.js +++ b/icons/uil-money-insert.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMoneyInsert = (props) => { - const { color, size, ...otherProps } = props +const UilMoneyInsert = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMoneyInsert.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMoneyInsert.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMoneyInsert; \ No newline at end of file diff --git a/icons/uil-money-stack.js b/icons/uil-money-stack.js index 404575a5..fb1514dd 100644 --- a/icons/uil-money-stack.js +++ b/icons/uil-money-stack.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMoneyStack = (props) => { - const { color, size, ...otherProps } = props +const UilMoneyStack = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMoneyStack.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMoneyStack.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMoneyStack; \ No newline at end of file diff --git a/icons/uil-money-withdraw.js b/icons/uil-money-withdraw.js index 82d4e2de..6b187208 100644 --- a/icons/uil-money-withdraw.js +++ b/icons/uil-money-withdraw.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMoneyWithdraw = (props) => { - const { color, size, ...otherProps } = props +const UilMoneyWithdraw = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMoneyWithdraw.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMoneyWithdraw.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMoneyWithdraw; \ No newline at end of file diff --git a/icons/uil-money-withdrawal.js b/icons/uil-money-withdrawal.js index f295ac3e..918e7a80 100644 --- a/icons/uil-money-withdrawal.js +++ b/icons/uil-money-withdrawal.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMoneyWithdrawal = (props) => { - const { color, size, ...otherProps } = props +const UilMoneyWithdrawal = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMoneyWithdrawal.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMoneyWithdrawal.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMoneyWithdrawal; \ No newline at end of file diff --git a/icons/uil-moneybag-alt.js b/icons/uil-moneybag-alt.js index 04793301..243f8d90 100644 --- a/icons/uil-moneybag-alt.js +++ b/icons/uil-moneybag-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMoneybagAlt = (props) => { - const { color, size, ...otherProps } = props +const UilMoneybagAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMoneybagAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMoneybagAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMoneybagAlt; \ No newline at end of file diff --git a/icons/uil-moneybag.js b/icons/uil-moneybag.js index 5fdb172b..9007f0d8 100644 --- a/icons/uil-moneybag.js +++ b/icons/uil-moneybag.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMoneybag = (props) => { - const { color, size, ...otherProps } = props +const UilMoneybag = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMoneybag.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMoneybag.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMoneybag; \ No newline at end of file diff --git a/icons/uil-monitor-heart-rate.js b/icons/uil-monitor-heart-rate.js index 66d4a9fe..0f0a0a2f 100644 --- a/icons/uil-monitor-heart-rate.js +++ b/icons/uil-monitor-heart-rate.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMonitorHeartRate = (props) => { - const { color, size, ...otherProps } = props +const UilMonitorHeartRate = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMonitorHeartRate.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMonitorHeartRate.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMonitorHeartRate; \ No newline at end of file diff --git a/icons/uil-monitor.js b/icons/uil-monitor.js index 6c902865..f3053319 100644 --- a/icons/uil-monitor.js +++ b/icons/uil-monitor.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMonitor = (props) => { - const { color, size, ...otherProps } = props +const UilMonitor = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMonitor.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMonitor.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMonitor; \ No newline at end of file diff --git a/icons/uil-moon-eclipse.js b/icons/uil-moon-eclipse.js index 76cb5120..b24efb8a 100644 --- a/icons/uil-moon-eclipse.js +++ b/icons/uil-moon-eclipse.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMoonEclipse = (props) => { - const { color, size, ...otherProps } = props +const UilMoonEclipse = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMoonEclipse.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMoonEclipse.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMoonEclipse; \ No newline at end of file diff --git a/icons/uil-moon.js b/icons/uil-moon.js index e8f7ab3d..a22527c2 100644 --- a/icons/uil-moon.js +++ b/icons/uil-moon.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMoon = (props) => { - const { color, size, ...otherProps } = props +const UilMoon = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMoon.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMoon.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMoon; \ No newline at end of file diff --git a/icons/uil-moonset.js b/icons/uil-moonset.js index fd2a0081..6f75c44c 100644 --- a/icons/uil-moonset.js +++ b/icons/uil-moonset.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMoonset = (props) => { - const { color, size, ...otherProps } = props +const UilMoonset = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMoonset.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMoonset.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMoonset; \ No newline at end of file diff --git a/icons/uil-mountains-sun.js b/icons/uil-mountains-sun.js index 18444ad4..22c4286a 100644 --- a/icons/uil-mountains-sun.js +++ b/icons/uil-mountains-sun.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMountainsSun = (props) => { - const { color, size, ...otherProps } = props +const UilMountainsSun = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMountainsSun.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMountainsSun.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMountainsSun; \ No newline at end of file diff --git a/icons/uil-mountains.js b/icons/uil-mountains.js index 7007b889..31c0bd6b 100644 --- a/icons/uil-mountains.js +++ b/icons/uil-mountains.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMountains = (props) => { - const { color, size, ...otherProps } = props +const UilMountains = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMountains.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMountains.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMountains; \ No newline at end of file diff --git a/icons/uil-mouse-alt-2.js b/icons/uil-mouse-alt-2.js index aeaba38b..3f74f794 100644 --- a/icons/uil-mouse-alt-2.js +++ b/icons/uil-mouse-alt-2.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMouseAlt2 = (props) => { - const { color, size, ...otherProps } = props +const UilMouseAlt2 = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMouseAlt2.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMouseAlt2.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMouseAlt2; \ No newline at end of file diff --git a/icons/uil-mouse-alt.js b/icons/uil-mouse-alt.js index f0bed103..24ec4853 100644 --- a/icons/uil-mouse-alt.js +++ b/icons/uil-mouse-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMouseAlt = (props) => { - const { color, size, ...otherProps } = props +const UilMouseAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMouseAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMouseAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMouseAlt; \ No newline at end of file diff --git a/icons/uil-mouse.js b/icons/uil-mouse.js index c743976b..beabc80b 100644 --- a/icons/uil-mouse.js +++ b/icons/uil-mouse.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMouse = (props) => { - const { color, size, ...otherProps } = props +const UilMouse = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMouse.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMouse.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMouse; \ No newline at end of file diff --git a/icons/uil-multiply.js b/icons/uil-multiply.js index 7dece461..3ce9a406 100644 --- a/icons/uil-multiply.js +++ b/icons/uil-multiply.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMultiply = (props) => { - const { color, size, ...otherProps } = props +const UilMultiply = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMultiply.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMultiply.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMultiply; \ No newline at end of file diff --git a/icons/uil-music-note.js b/icons/uil-music-note.js index 64091129..ceccbb16 100644 --- a/icons/uil-music-note.js +++ b/icons/uil-music-note.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMusicNote = (props) => { - const { color, size, ...otherProps } = props +const UilMusicNote = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMusicNote.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMusicNote.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMusicNote; \ No newline at end of file diff --git a/icons/uil-music-tune-slash.js b/icons/uil-music-tune-slash.js index 5fd3cc11..042207d9 100644 --- a/icons/uil-music-tune-slash.js +++ b/icons/uil-music-tune-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMusicTuneSlash = (props) => { - const { color, size, ...otherProps } = props +const UilMusicTuneSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMusicTuneSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMusicTuneSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMusicTuneSlash; \ No newline at end of file diff --git a/icons/uil-music.js b/icons/uil-music.js index e20a7b17..38ae71ab 100644 --- a/icons/uil-music.js +++ b/icons/uil-music.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilMusic = (props) => { - const { color, size, ...otherProps } = props +const UilMusic = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilMusic.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilMusic.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilMusic; \ No newline at end of file diff --git a/icons/uil-n-a.js b/icons/uil-n-a.js index 826aa22d..54dc9318 100644 --- a/icons/uil-n-a.js +++ b/icons/uil-n-a.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilNA = (props) => { - const { color, size, ...otherProps } = props +const UilNA = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilNA.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilNA.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilNA; \ No newline at end of file diff --git a/icons/uil-navigator.js b/icons/uil-navigator.js index f1f90991..7930c9a4 100644 --- a/icons/uil-navigator.js +++ b/icons/uil-navigator.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilNavigator = (props) => { - const { color, size, ...otherProps } = props +const UilNavigator = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilNavigator.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilNavigator.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilNavigator; \ No newline at end of file diff --git a/icons/uil-nerd.js b/icons/uil-nerd.js index b2ab3af6..151a5963 100644 --- a/icons/uil-nerd.js +++ b/icons/uil-nerd.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilNerd = (props) => { - const { color, size, ...otherProps } = props +const UilNerd = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilNerd.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilNerd.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilNerd; \ No newline at end of file diff --git a/icons/uil-newspaper.js b/icons/uil-newspaper.js index b931c4d3..795e3db1 100644 --- a/icons/uil-newspaper.js +++ b/icons/uil-newspaper.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilNewspaper = (props) => { - const { color, size, ...otherProps } = props +const UilNewspaper = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilNewspaper.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilNewspaper.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilNewspaper; \ No newline at end of file diff --git a/icons/uil-ninja.js b/icons/uil-ninja.js index 7f86305d..25dad8ed 100644 --- a/icons/uil-ninja.js +++ b/icons/uil-ninja.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilNinja = (props) => { - const { color, size, ...otherProps } = props +const UilNinja = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilNinja.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilNinja.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilNinja; \ No newline at end of file diff --git a/icons/uil-no-entry.js b/icons/uil-no-entry.js index b1f4eac3..990e6b0a 100644 --- a/icons/uil-no-entry.js +++ b/icons/uil-no-entry.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilNoEntry = (props) => { - const { color, size, ...otherProps } = props +const UilNoEntry = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilNoEntry.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilNoEntry.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilNoEntry; \ No newline at end of file diff --git a/icons/uil-notebooks.js b/icons/uil-notebooks.js index 9107f289..da5643fd 100644 --- a/icons/uil-notebooks.js +++ b/icons/uil-notebooks.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilNotebooks = (props) => { - const { color, size, ...otherProps } = props +const UilNotebooks = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilNotebooks.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilNotebooks.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilNotebooks; \ No newline at end of file diff --git a/icons/uil-notes.js b/icons/uil-notes.js index f61e70f7..27888e6c 100644 --- a/icons/uil-notes.js +++ b/icons/uil-notes.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilNotes = (props) => { - const { color, size, ...otherProps } = props +const UilNotes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilNotes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilNotes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilNotes; \ No newline at end of file diff --git a/icons/uil-object-group.js b/icons/uil-object-group.js index 995bd1f8..6aa96bf4 100644 --- a/icons/uil-object-group.js +++ b/icons/uil-object-group.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilObjectGroup = (props) => { - const { color, size, ...otherProps } = props +const UilObjectGroup = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilObjectGroup.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilObjectGroup.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilObjectGroup; \ No newline at end of file diff --git a/icons/uil-object-ungroup.js b/icons/uil-object-ungroup.js index 71ce9890..e1eb6014 100644 --- a/icons/uil-object-ungroup.js +++ b/icons/uil-object-ungroup.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilObjectUngroup = (props) => { - const { color, size, ...otherProps } = props +const UilObjectUngroup = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilObjectUngroup.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilObjectUngroup.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilObjectUngroup; \ No newline at end of file diff --git a/icons/uil-octagon.js b/icons/uil-octagon.js index cd111d6c..97f0cd4b 100644 --- a/icons/uil-octagon.js +++ b/icons/uil-octagon.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilOctagon = (props) => { - const { color, size, ...otherProps } = props +const UilOctagon = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilOctagon.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilOctagon.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilOctagon; \ No newline at end of file diff --git a/icons/uil-okta.js b/icons/uil-okta.js index 06f27d14..ed289d41 100644 --- a/icons/uil-okta.js +++ b/icons/uil-okta.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilOkta = (props) => { - const { color, size, ...otherProps } = props +const UilOkta = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilOkta.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilOkta.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilOkta; \ No newline at end of file diff --git a/icons/uil-opera-alt.js b/icons/uil-opera-alt.js index c280055d..11a54e4f 100644 --- a/icons/uil-opera-alt.js +++ b/icons/uil-opera-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilOperaAlt = (props) => { - const { color, size, ...otherProps } = props +const UilOperaAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilOperaAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilOperaAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilOperaAlt; \ No newline at end of file diff --git a/icons/uil-opera.js b/icons/uil-opera.js index 3313ccb2..80d6d023 100644 --- a/icons/uil-opera.js +++ b/icons/uil-opera.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilOpera = (props) => { - const { color, size, ...otherProps } = props +const UilOpera = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilOpera.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilOpera.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilOpera; \ No newline at end of file diff --git a/icons/uil-outgoing-call.js b/icons/uil-outgoing-call.js index a5d06410..b58b7a01 100644 --- a/icons/uil-outgoing-call.js +++ b/icons/uil-outgoing-call.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilOutgoingCall = (props) => { - const { color, size, ...otherProps } = props +const UilOutgoingCall = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilOutgoingCall.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilOutgoingCall.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilOutgoingCall; \ No newline at end of file diff --git a/icons/uil-package.js b/icons/uil-package.js index e18a6a15..4f8f875f 100644 --- a/icons/uil-package.js +++ b/icons/uil-package.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPackage = (props) => { - const { color, size, ...otherProps } = props +const UilPackage = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPackage.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPackage.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPackage; \ No newline at end of file diff --git a/icons/uil-padlock.js b/icons/uil-padlock.js index f590f5eb..6c4c4ba1 100644 --- a/icons/uil-padlock.js +++ b/icons/uil-padlock.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPadlock = (props) => { - const { color, size, ...otherProps } = props +const UilPadlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPadlock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPadlock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPadlock; \ No newline at end of file diff --git a/icons/uil-pagelines.js b/icons/uil-pagelines.js index 6c7e13b7..ef26cd4d 100644 --- a/icons/uil-pagelines.js +++ b/icons/uil-pagelines.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPagelines = (props) => { - const { color, size, ...otherProps } = props +const UilPagelines = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPagelines.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPagelines.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPagelines; \ No newline at end of file diff --git a/icons/uil-pagerduty.js b/icons/uil-pagerduty.js index cb7bdd1c..30ac6dcf 100644 --- a/icons/uil-pagerduty.js +++ b/icons/uil-pagerduty.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPagerduty = (props) => { - const { color, size, ...otherProps } = props +const UilPagerduty = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPagerduty.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPagerduty.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPagerduty; \ No newline at end of file diff --git a/icons/uil-paint-tool.js b/icons/uil-paint-tool.js index 305481c6..44671251 100644 --- a/icons/uil-paint-tool.js +++ b/icons/uil-paint-tool.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPaintTool = (props) => { - const { color, size, ...otherProps } = props +const UilPaintTool = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPaintTool.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPaintTool.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPaintTool; \ No newline at end of file diff --git a/icons/uil-palette.js b/icons/uil-palette.js index da955ffc..f2e881ab 100644 --- a/icons/uil-palette.js +++ b/icons/uil-palette.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPalette = (props) => { - const { color, size, ...otherProps } = props +const UilPalette = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPalette.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPalette.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPalette; \ No newline at end of file diff --git a/icons/uil-panel-add.js b/icons/uil-panel-add.js index 6852dfb5..3c39e52c 100644 --- a/icons/uil-panel-add.js +++ b/icons/uil-panel-add.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPanelAdd = (props) => { - const { color, size, ...otherProps } = props +const UilPanelAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPanelAdd.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPanelAdd.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPanelAdd; \ No newline at end of file diff --git a/icons/uil-panorama-h-alt.js b/icons/uil-panorama-h-alt.js index 1310b469..a9cefbb8 100644 --- a/icons/uil-panorama-h-alt.js +++ b/icons/uil-panorama-h-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPanoramaHAlt = (props) => { - const { color, size, ...otherProps } = props +const UilPanoramaHAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPanoramaHAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPanoramaHAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPanoramaHAlt; \ No newline at end of file diff --git a/icons/uil-panorama-h.js b/icons/uil-panorama-h.js index 4bebcf1f..7a93d01b 100644 --- a/icons/uil-panorama-h.js +++ b/icons/uil-panorama-h.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPanoramaH = (props) => { - const { color, size, ...otherProps } = props +const UilPanoramaH = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPanoramaH.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPanoramaH.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPanoramaH; \ No newline at end of file diff --git a/icons/uil-panorama-v.js b/icons/uil-panorama-v.js index 66acbeab..2d5a7881 100644 --- a/icons/uil-panorama-v.js +++ b/icons/uil-panorama-v.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPanoramaV = (props) => { - const { color, size, ...otherProps } = props +const UilPanoramaV = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPanoramaV.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPanoramaV.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPanoramaV; \ No newline at end of file diff --git a/icons/uil-paperclip.js b/icons/uil-paperclip.js index 66417a0f..184cc181 100644 --- a/icons/uil-paperclip.js +++ b/icons/uil-paperclip.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPaperclip = (props) => { - const { color, size, ...otherProps } = props +const UilPaperclip = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPaperclip.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPaperclip.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPaperclip; \ No newline at end of file diff --git a/icons/uil-paragraph.js b/icons/uil-paragraph.js index 24010c76..4b1838b6 100644 --- a/icons/uil-paragraph.js +++ b/icons/uil-paragraph.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilParagraph = (props) => { - const { color, size, ...otherProps } = props +const UilParagraph = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilParagraph.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilParagraph.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilParagraph; \ No newline at end of file diff --git a/icons/uil-parcel.js b/icons/uil-parcel.js index 1e1673bd..aae71c6d 100644 --- a/icons/uil-parcel.js +++ b/icons/uil-parcel.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilParcel = (props) => { - const { color, size, ...otherProps } = props +const UilParcel = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilParcel.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilParcel.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilParcel; \ No newline at end of file diff --git a/icons/uil-parking-circle.js b/icons/uil-parking-circle.js index 8e786d9d..27b14145 100644 --- a/icons/uil-parking-circle.js +++ b/icons/uil-parking-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilParkingCircle = (props) => { - const { color, size, ...otherProps } = props +const UilParkingCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilParkingCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilParkingCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilParkingCircle; \ No newline at end of file diff --git a/icons/uil-parking-square.js b/icons/uil-parking-square.js index e0980a9b..acbae2bf 100644 --- a/icons/uil-parking-square.js +++ b/icons/uil-parking-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilParkingSquare = (props) => { - const { color, size, ...otherProps } = props +const UilParkingSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilParkingSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilParkingSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilParkingSquare; \ No newline at end of file diff --git a/icons/uil-pathfinder-unite.js b/icons/uil-pathfinder-unite.js index 16c75a00..faf533a1 100644 --- a/icons/uil-pathfinder-unite.js +++ b/icons/uil-pathfinder-unite.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPathfinderUnite = (props) => { - const { color, size, ...otherProps } = props +const UilPathfinderUnite = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPathfinderUnite.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPathfinderUnite.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPathfinderUnite; \ No newline at end of file diff --git a/icons/uil-pathfinder.js b/icons/uil-pathfinder.js index 061a6955..466ce6f1 100644 --- a/icons/uil-pathfinder.js +++ b/icons/uil-pathfinder.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPathfinder = (props) => { - const { color, size, ...otherProps } = props +const UilPathfinder = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPathfinder.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPathfinder.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPathfinder; \ No newline at end of file diff --git a/icons/uil-pause-circle.js b/icons/uil-pause-circle.js index da4d2cc5..cd8b4f1f 100644 --- a/icons/uil-pause-circle.js +++ b/icons/uil-pause-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPauseCircle = (props) => { - const { color, size, ...otherProps } = props +const UilPauseCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPauseCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPauseCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPauseCircle; \ No newline at end of file diff --git a/icons/uil-pause.js b/icons/uil-pause.js index 506b667a..c4364953 100644 --- a/icons/uil-pause.js +++ b/icons/uil-pause.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPause = (props) => { - const { color, size, ...otherProps } = props +const UilPause = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPause.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPause.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPause; \ No newline at end of file diff --git a/icons/uil-paypal.js b/icons/uil-paypal.js index 03715d02..4fcce965 100644 --- a/icons/uil-paypal.js +++ b/icons/uil-paypal.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPaypal = (props) => { - const { color, size, ...otherProps } = props +const UilPaypal = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPaypal.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPaypal.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPaypal; \ No newline at end of file diff --git a/icons/uil-pen.js b/icons/uil-pen.js index 242500f0..8521cb56 100644 --- a/icons/uil-pen.js +++ b/icons/uil-pen.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPen = (props) => { - const { color, size, ...otherProps } = props +const UilPen = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPen.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPen.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPen; \ No newline at end of file diff --git a/icons/uil-pentagon.js b/icons/uil-pentagon.js index 6b80e711..7b0e8c23 100644 --- a/icons/uil-pentagon.js +++ b/icons/uil-pentagon.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPentagon = (props) => { - const { color, size, ...otherProps } = props +const UilPentagon = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPentagon.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPentagon.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPentagon; \ No newline at end of file diff --git a/icons/uil-percentage.js b/icons/uil-percentage.js index 630feef9..eb9c0216 100644 --- a/icons/uil-percentage.js +++ b/icons/uil-percentage.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPercentage = (props) => { - const { color, size, ...otherProps } = props +const UilPercentage = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPercentage.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPercentage.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPercentage; \ No newline at end of file diff --git a/icons/uil-phone-alt.js b/icons/uil-phone-alt.js index 1e06a6a0..364e0480 100644 --- a/icons/uil-phone-alt.js +++ b/icons/uil-phone-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPhoneAlt = (props) => { - const { color, size, ...otherProps } = props +const UilPhoneAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPhoneAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPhoneAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPhoneAlt; \ No newline at end of file diff --git a/icons/uil-phone-pause.js b/icons/uil-phone-pause.js index 903a6421..6d114bd3 100644 --- a/icons/uil-phone-pause.js +++ b/icons/uil-phone-pause.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPhonePause = (props) => { - const { color, size, ...otherProps } = props +const UilPhonePause = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPhonePause.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPhonePause.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPhonePause; \ No newline at end of file diff --git a/icons/uil-phone-slash.js b/icons/uil-phone-slash.js index 05448867..05d254bd 100644 --- a/icons/uil-phone-slash.js +++ b/icons/uil-phone-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPhoneSlash = (props) => { - const { color, size, ...otherProps } = props +const UilPhoneSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPhoneSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPhoneSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPhoneSlash; \ No newline at end of file diff --git a/icons/uil-phone-times.js b/icons/uil-phone-times.js index 1fd80bec..ecc9daf5 100644 --- a/icons/uil-phone-times.js +++ b/icons/uil-phone-times.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPhoneTimes = (props) => { - const { color, size, ...otherProps } = props +const UilPhoneTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPhoneTimes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPhoneTimes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPhoneTimes; \ No newline at end of file diff --git a/icons/uil-phone-volume.js b/icons/uil-phone-volume.js index 0fe3f7ea..b40f8816 100644 --- a/icons/uil-phone-volume.js +++ b/icons/uil-phone-volume.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPhoneVolume = (props) => { - const { color, size, ...otherProps } = props +const UilPhoneVolume = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPhoneVolume.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPhoneVolume.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPhoneVolume; \ No newline at end of file diff --git a/icons/uil-phone.js b/icons/uil-phone.js index 65894103..33a960b5 100644 --- a/icons/uil-phone.js +++ b/icons/uil-phone.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPhone = (props) => { - const { color, size, ...otherProps } = props +const UilPhone = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPhone.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPhone.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPhone; \ No newline at end of file diff --git a/icons/uil-picture.js b/icons/uil-picture.js index 6a7b9eca..8c71219c 100644 --- a/icons/uil-picture.js +++ b/icons/uil-picture.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPicture = (props) => { - const { color, size, ...otherProps } = props +const UilPicture = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPicture.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPicture.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPicture; \ No newline at end of file diff --git a/icons/uil-pizza-slice.js b/icons/uil-pizza-slice.js index 46c59fd1..8b3b7b94 100644 --- a/icons/uil-pizza-slice.js +++ b/icons/uil-pizza-slice.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPizzaSlice = (props) => { - const { color, size, ...otherProps } = props +const UilPizzaSlice = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPizzaSlice.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPizzaSlice.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPizzaSlice; \ No newline at end of file diff --git a/icons/uil-plane-arrival.js b/icons/uil-plane-arrival.js index 999d53fc..2276c641 100644 --- a/icons/uil-plane-arrival.js +++ b/icons/uil-plane-arrival.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPlaneArrival = (props) => { - const { color, size, ...otherProps } = props +const UilPlaneArrival = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPlaneArrival.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPlaneArrival.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPlaneArrival; \ No newline at end of file diff --git a/icons/uil-plane-departure.js b/icons/uil-plane-departure.js index b4c1deb3..3b68b37c 100644 --- a/icons/uil-plane-departure.js +++ b/icons/uil-plane-departure.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPlaneDeparture = (props) => { - const { color, size, ...otherProps } = props +const UilPlaneDeparture = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPlaneDeparture.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPlaneDeparture.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPlaneDeparture; \ No newline at end of file diff --git a/icons/uil-plane-fly.js b/icons/uil-plane-fly.js index 64a55cf2..0b9917a8 100644 --- a/icons/uil-plane-fly.js +++ b/icons/uil-plane-fly.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPlaneFly = (props) => { - const { color, size, ...otherProps } = props +const UilPlaneFly = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPlaneFly.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPlaneFly.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPlaneFly; \ No newline at end of file diff --git a/icons/uil-plane.js b/icons/uil-plane.js index f5e389fa..9ddab7ba 100644 --- a/icons/uil-plane.js +++ b/icons/uil-plane.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPlane = (props) => { - const { color, size, ...otherProps } = props +const UilPlane = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPlane.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPlane.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPlane; \ No newline at end of file diff --git a/icons/uil-play-circle.js b/icons/uil-play-circle.js index 6fa7bb1e..dbe067a6 100644 --- a/icons/uil-play-circle.js +++ b/icons/uil-play-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPlayCircle = (props) => { - const { color, size, ...otherProps } = props +const UilPlayCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPlayCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPlayCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPlayCircle; \ No newline at end of file diff --git a/icons/uil-play.js b/icons/uil-play.js index cb99f341..cece4b5c 100644 --- a/icons/uil-play.js +++ b/icons/uil-play.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPlay = (props) => { - const { color, size, ...otherProps } = props +const UilPlay = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPlay.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPlay.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPlay; \ No newline at end of file diff --git a/icons/uil-plug.js b/icons/uil-plug.js index d2c2fc44..e9db85ff 100644 --- a/icons/uil-plug.js +++ b/icons/uil-plug.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPlug = (props) => { - const { color, size, ...otherProps } = props +const UilPlug = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPlug.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPlug.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPlug; \ No newline at end of file diff --git a/icons/uil-plus-circle.js b/icons/uil-plus-circle.js index 2380a9f3..86a066c8 100644 --- a/icons/uil-plus-circle.js +++ b/icons/uil-plus-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPlusCircle = (props) => { - const { color, size, ...otherProps } = props +const UilPlusCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPlusCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPlusCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPlusCircle; \ No newline at end of file diff --git a/icons/uil-plus-square.js b/icons/uil-plus-square.js index c90e2fb2..3b88da8c 100644 --- a/icons/uil-plus-square.js +++ b/icons/uil-plus-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPlusSquare = (props) => { - const { color, size, ...otherProps } = props +const UilPlusSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPlusSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPlusSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPlusSquare; \ No newline at end of file diff --git a/icons/uil-plus.js b/icons/uil-plus.js index 981c5966..b2319bc0 100644 --- a/icons/uil-plus.js +++ b/icons/uil-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPlus = (props) => { - const { color, size, ...otherProps } = props +const UilPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPlus; \ No newline at end of file diff --git a/icons/uil-podium.js b/icons/uil-podium.js index b3e88eea..babf0d62 100644 --- a/icons/uil-podium.js +++ b/icons/uil-podium.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPodium = (props) => { - const { color, size, ...otherProps } = props +const UilPodium = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPodium.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPodium.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPodium; \ No newline at end of file diff --git a/icons/uil-polygon.js b/icons/uil-polygon.js index 306d59dc..3b9aa459 100644 --- a/icons/uil-polygon.js +++ b/icons/uil-polygon.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPolygon = (props) => { - const { color, size, ...otherProps } = props +const UilPolygon = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPolygon.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPolygon.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPolygon; \ No newline at end of file diff --git a/icons/uil-post-stamp.js b/icons/uil-post-stamp.js index e9cfcfc8..bba66a2f 100644 --- a/icons/uil-post-stamp.js +++ b/icons/uil-post-stamp.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPostStamp = (props) => { - const { color, size, ...otherProps } = props +const UilPostStamp = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPostStamp.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPostStamp.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPostStamp; \ No newline at end of file diff --git a/icons/uil-postcard.js b/icons/uil-postcard.js index e89c3e29..2b9ddb67 100644 --- a/icons/uil-postcard.js +++ b/icons/uil-postcard.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPostcard = (props) => { - const { color, size, ...otherProps } = props +const UilPostcard = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPostcard.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPostcard.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPostcard; \ No newline at end of file diff --git a/icons/uil-pound-circle.js b/icons/uil-pound-circle.js index 7ca00adb..8f4cb788 100644 --- a/icons/uil-pound-circle.js +++ b/icons/uil-pound-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPoundCircle = (props) => { - const { color, size, ...otherProps } = props +const UilPoundCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPoundCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPoundCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPoundCircle; \ No newline at end of file diff --git a/icons/uil-pound.js b/icons/uil-pound.js index 47f0795d..cffd7e09 100644 --- a/icons/uil-pound.js +++ b/icons/uil-pound.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPound = (props) => { - const { color, size, ...otherProps } = props +const UilPound = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPound.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPound.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPound; \ No newline at end of file diff --git a/icons/uil-power.js b/icons/uil-power.js index f6d6b529..7d95ef47 100644 --- a/icons/uil-power.js +++ b/icons/uil-power.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPower = (props) => { - const { color, size, ...otherProps } = props +const UilPower = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPower.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPower.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPower; \ No newline at end of file diff --git a/icons/uil-prescription-bottle.js b/icons/uil-prescription-bottle.js index 4470ace7..025103da 100644 --- a/icons/uil-prescription-bottle.js +++ b/icons/uil-prescription-bottle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPrescriptionBottle = (props) => { - const { color, size, ...otherProps } = props +const UilPrescriptionBottle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPrescriptionBottle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPrescriptionBottle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPrescriptionBottle; \ No newline at end of file diff --git a/icons/uil-presentation-check.js b/icons/uil-presentation-check.js index 4176345c..f3dfc55a 100644 --- a/icons/uil-presentation-check.js +++ b/icons/uil-presentation-check.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPresentationCheck = (props) => { - const { color, size, ...otherProps } = props +const UilPresentationCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPresentationCheck.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPresentationCheck.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPresentationCheck; \ No newline at end of file diff --git a/icons/uil-presentation-edit.js b/icons/uil-presentation-edit.js index 4c8dd8f1..c82d832c 100644 --- a/icons/uil-presentation-edit.js +++ b/icons/uil-presentation-edit.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPresentationEdit = (props) => { - const { color, size, ...otherProps } = props +const UilPresentationEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPresentationEdit.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPresentationEdit.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPresentationEdit; \ No newline at end of file diff --git a/icons/uil-presentation-line.js b/icons/uil-presentation-line.js index 631da24b..2c4aff02 100644 --- a/icons/uil-presentation-line.js +++ b/icons/uil-presentation-line.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPresentationLine = (props) => { - const { color, size, ...otherProps } = props +const UilPresentationLine = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPresentationLine.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPresentationLine.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPresentationLine; \ No newline at end of file diff --git a/icons/uil-presentation-lines-alt.js b/icons/uil-presentation-lines-alt.js index f1467e06..c73d1ae1 100644 --- a/icons/uil-presentation-lines-alt.js +++ b/icons/uil-presentation-lines-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPresentationLinesAlt = (props) => { - const { color, size, ...otherProps } = props +const UilPresentationLinesAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPresentationLinesAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPresentationLinesAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPresentationLinesAlt; \ No newline at end of file diff --git a/icons/uil-presentation-minus.js b/icons/uil-presentation-minus.js index a19c1ca8..9d241770 100644 --- a/icons/uil-presentation-minus.js +++ b/icons/uil-presentation-minus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPresentationMinus = (props) => { - const { color, size, ...otherProps } = props +const UilPresentationMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPresentationMinus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPresentationMinus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPresentationMinus; \ No newline at end of file diff --git a/icons/uil-presentation-play.js b/icons/uil-presentation-play.js index 7abeec92..856eb02b 100644 --- a/icons/uil-presentation-play.js +++ b/icons/uil-presentation-play.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPresentationPlay = (props) => { - const { color, size, ...otherProps } = props +const UilPresentationPlay = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPresentationPlay.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPresentationPlay.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPresentationPlay; \ No newline at end of file diff --git a/icons/uil-presentation-plus.js b/icons/uil-presentation-plus.js index ea7a1766..08646716 100644 --- a/icons/uil-presentation-plus.js +++ b/icons/uil-presentation-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPresentationPlus = (props) => { - const { color, size, ...otherProps } = props +const UilPresentationPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPresentationPlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPresentationPlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPresentationPlus; \ No newline at end of file diff --git a/icons/uil-presentation-times.js b/icons/uil-presentation-times.js index 3f47a040..ed831d60 100644 --- a/icons/uil-presentation-times.js +++ b/icons/uil-presentation-times.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPresentationTimes = (props) => { - const { color, size, ...otherProps } = props +const UilPresentationTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPresentationTimes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPresentationTimes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPresentationTimes; \ No newline at end of file diff --git a/icons/uil-presentation.js b/icons/uil-presentation.js index f4ff4674..29a511dc 100644 --- a/icons/uil-presentation.js +++ b/icons/uil-presentation.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPresentation = (props) => { - const { color, size, ...otherProps } = props +const UilPresentation = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPresentation.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPresentation.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPresentation; \ No newline at end of file diff --git a/icons/uil-previous.js b/icons/uil-previous.js index e1fe3e3a..61716f95 100644 --- a/icons/uil-previous.js +++ b/icons/uil-previous.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPrevious = (props) => { - const { color, size, ...otherProps } = props +const UilPrevious = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPrevious.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPrevious.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPrevious; \ No newline at end of file diff --git a/icons/uil-pricetag-alt.js b/icons/uil-pricetag-alt.js index f10dd2ca..fb8b4022 100644 --- a/icons/uil-pricetag-alt.js +++ b/icons/uil-pricetag-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPricetagAlt = (props) => { - const { color, size, ...otherProps } = props +const UilPricetagAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPricetagAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPricetagAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPricetagAlt; \ No newline at end of file diff --git a/icons/uil-print-slash.js b/icons/uil-print-slash.js index 61f24db9..d9d36472 100644 --- a/icons/uil-print-slash.js +++ b/icons/uil-print-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPrintSlash = (props) => { - const { color, size, ...otherProps } = props +const UilPrintSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPrintSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPrintSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPrintSlash; \ No newline at end of file diff --git a/icons/uil-print.js b/icons/uil-print.js index d3f45441..a61bd1f6 100644 --- a/icons/uil-print.js +++ b/icons/uil-print.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPrint = (props) => { - const { color, size, ...otherProps } = props +const UilPrint = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPrint.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPrint.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPrint; \ No newline at end of file diff --git a/icons/uil-process.js b/icons/uil-process.js index 86752815..36580078 100644 --- a/icons/uil-process.js +++ b/icons/uil-process.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilProcess = (props) => { - const { color, size, ...otherProps } = props +const UilProcess = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilProcess.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilProcess.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilProcess; \ No newline at end of file diff --git a/icons/uil-processor.js b/icons/uil-processor.js index b381846f..c2225169 100644 --- a/icons/uil-processor.js +++ b/icons/uil-processor.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilProcessor = (props) => { - const { color, size, ...otherProps } = props +const UilProcessor = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilProcessor.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilProcessor.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilProcessor; \ No newline at end of file diff --git a/icons/uil-programming-language.js b/icons/uil-programming-language.js index 05af8d28..5bab59b9 100644 --- a/icons/uil-programming-language.js +++ b/icons/uil-programming-language.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilProgrammingLanguage = (props) => { - const { color, size, ...otherProps } = props +const UilProgrammingLanguage = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilProgrammingLanguage.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilProgrammingLanguage.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilProgrammingLanguage; \ No newline at end of file diff --git a/icons/uil-pump.js b/icons/uil-pump.js index 28b87be9..87ad6fe5 100644 --- a/icons/uil-pump.js +++ b/icons/uil-pump.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPump = (props) => { - const { color, size, ...otherProps } = props +const UilPump = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPump.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPump.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPump; \ No newline at end of file diff --git a/icons/uil-puzzle-piece.js b/icons/uil-puzzle-piece.js index 9fbaab84..f51d6bab 100644 --- a/icons/uil-puzzle-piece.js +++ b/icons/uil-puzzle-piece.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilPuzzlePiece = (props) => { - const { color, size, ...otherProps } = props +const UilPuzzlePiece = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilPuzzlePiece.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilPuzzlePiece.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilPuzzlePiece; \ No newline at end of file diff --git a/icons/uil-qrcode-scan.js b/icons/uil-qrcode-scan.js index 60f376bd..abe8c666 100644 --- a/icons/uil-qrcode-scan.js +++ b/icons/uil-qrcode-scan.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilQrcodeScan = (props) => { - const { color, size, ...otherProps } = props +const UilQrcodeScan = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilQrcodeScan.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilQrcodeScan.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilQrcodeScan; \ No newline at end of file diff --git a/icons/uil-question-circle.js b/icons/uil-question-circle.js index 0b7c30d0..180a7408 100644 --- a/icons/uil-question-circle.js +++ b/icons/uil-question-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilQuestionCircle = (props) => { - const { color, size, ...otherProps } = props +const UilQuestionCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilQuestionCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilQuestionCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilQuestionCircle; \ No newline at end of file diff --git a/icons/uil-question.js b/icons/uil-question.js index 181d7fb5..23330903 100644 --- a/icons/uil-question.js +++ b/icons/uil-question.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilQuestion = (props) => { - const { color, size, ...otherProps } = props +const UilQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilQuestion.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilQuestion.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilQuestion; \ No newline at end of file diff --git a/icons/uil-rainbow.js b/icons/uil-rainbow.js index 4759ddfb..90c40278 100644 --- a/icons/uil-rainbow.js +++ b/icons/uil-rainbow.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRainbow = (props) => { - const { color, size, ...otherProps } = props +const UilRainbow = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRainbow.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRainbow.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRainbow; \ No newline at end of file diff --git a/icons/uil-raindrops-alt.js b/icons/uil-raindrops-alt.js index b9211d09..524a3128 100644 --- a/icons/uil-raindrops-alt.js +++ b/icons/uil-raindrops-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRaindropsAlt = (props) => { - const { color, size, ...otherProps } = props +const UilRaindropsAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRaindropsAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRaindropsAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRaindropsAlt; \ No newline at end of file diff --git a/icons/uil-raindrops.js b/icons/uil-raindrops.js index 1fe0a946..fed5b3c8 100644 --- a/icons/uil-raindrops.js +++ b/icons/uil-raindrops.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRaindrops = (props) => { - const { color, size, ...otherProps } = props +const UilRaindrops = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRaindrops.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRaindrops.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRaindrops; \ No newline at end of file diff --git a/icons/uil-react.js b/icons/uil-react.js index 4e068c45..d449ac68 100644 --- a/icons/uil-react.js +++ b/icons/uil-react.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilReact = (props) => { - const { color, size, ...otherProps } = props +const UilReact = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilReact.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilReact.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilReact; \ No newline at end of file diff --git a/icons/uil-receipt-alt.js b/icons/uil-receipt-alt.js index 291f35c2..608b4ab7 100644 --- a/icons/uil-receipt-alt.js +++ b/icons/uil-receipt-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilReceiptAlt = (props) => { - const { color, size, ...otherProps } = props +const UilReceiptAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilReceiptAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilReceiptAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilReceiptAlt; \ No newline at end of file diff --git a/icons/uil-receipt.js b/icons/uil-receipt.js index 523d471d..c3b02ad0 100644 --- a/icons/uil-receipt.js +++ b/icons/uil-receipt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilReceipt = (props) => { - const { color, size, ...otherProps } = props +const UilReceipt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilReceipt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilReceipt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilReceipt; \ No newline at end of file diff --git a/icons/uil-record-audio.js b/icons/uil-record-audio.js index 77c8895d..43c821b8 100644 --- a/icons/uil-record-audio.js +++ b/icons/uil-record-audio.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRecordAudio = (props) => { - const { color, size, ...otherProps } = props +const UilRecordAudio = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRecordAudio.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRecordAudio.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRecordAudio; \ No newline at end of file diff --git a/icons/uil-reddit-alien-alt.js b/icons/uil-reddit-alien-alt.js index 43d846ac..4a98fc9b 100644 --- a/icons/uil-reddit-alien-alt.js +++ b/icons/uil-reddit-alien-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRedditAlienAlt = (props) => { - const { color, size, ...otherProps } = props +const UilRedditAlienAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRedditAlienAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRedditAlienAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRedditAlienAlt; \ No newline at end of file diff --git a/icons/uil-redo.js b/icons/uil-redo.js index 22e74468..f2173884 100644 --- a/icons/uil-redo.js +++ b/icons/uil-redo.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRedo = (props) => { - const { color, size, ...otherProps } = props +const UilRedo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRedo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRedo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRedo; \ No newline at end of file diff --git a/icons/uil-refresh.js b/icons/uil-refresh.js index 2b8673c6..416f08e7 100644 --- a/icons/uil-refresh.js +++ b/icons/uil-refresh.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRefresh = (props) => { - const { color, size, ...otherProps } = props +const UilRefresh = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRefresh.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRefresh.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRefresh; \ No newline at end of file diff --git a/icons/uil-registered.js b/icons/uil-registered.js index b3671f4e..947a1082 100644 --- a/icons/uil-registered.js +++ b/icons/uil-registered.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRegistered = (props) => { - const { color, size, ...otherProps } = props +const UilRegistered = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRegistered.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRegistered.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRegistered; \ No newline at end of file diff --git a/icons/uil-repeat.js b/icons/uil-repeat.js index 24693fd0..b778c4c6 100644 --- a/icons/uil-repeat.js +++ b/icons/uil-repeat.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRepeat = (props) => { - const { color, size, ...otherProps } = props +const UilRepeat = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRepeat.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRepeat.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRepeat; \ No newline at end of file diff --git a/icons/uil-restaurant.js b/icons/uil-restaurant.js index 7de8f4e3..089ba5fe 100644 --- a/icons/uil-restaurant.js +++ b/icons/uil-restaurant.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRestaurant = (props) => { - const { color, size, ...otherProps } = props +const UilRestaurant = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRestaurant.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRestaurant.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRestaurant; \ No newline at end of file diff --git a/icons/uil-right-indent-alt.js b/icons/uil-right-indent-alt.js index cd9431d7..4e5fac78 100644 --- a/icons/uil-right-indent-alt.js +++ b/icons/uil-right-indent-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRightIndentAlt = (props) => { - const { color, size, ...otherProps } = props +const UilRightIndentAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRightIndentAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRightIndentAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRightIndentAlt; \ No newline at end of file diff --git a/icons/uil-right-to-left-text-direction.js b/icons/uil-right-to-left-text-direction.js index 0b53ff6c..8dc7989d 100644 --- a/icons/uil-right-to-left-text-direction.js +++ b/icons/uil-right-to-left-text-direction.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRightToLeftTextDirection = (props) => { - const { color, size, ...otherProps } = props +const UilRightToLeftTextDirection = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRightToLeftTextDirection.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRightToLeftTextDirection.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRightToLeftTextDirection; \ No newline at end of file diff --git a/icons/uil-robot.js b/icons/uil-robot.js index 8f063799..bea3fc0c 100644 --- a/icons/uil-robot.js +++ b/icons/uil-robot.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRobot = (props) => { - const { color, size, ...otherProps } = props +const UilRobot = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRobot.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRobot.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRobot; \ No newline at end of file diff --git a/icons/uil-rocket.js b/icons/uil-rocket.js index 93f48dd6..5333c314 100644 --- a/icons/uil-rocket.js +++ b/icons/uil-rocket.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRocket = (props) => { - const { color, size, ...otherProps } = props +const UilRocket = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRocket.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRocket.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRocket; \ No newline at end of file diff --git a/icons/uil-rope-way.js b/icons/uil-rope-way.js index 825cc297..7c9c15ba 100644 --- a/icons/uil-rope-way.js +++ b/icons/uil-rope-way.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRopeWay = (props) => { - const { color, size, ...otherProps } = props +const UilRopeWay = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRopeWay.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRopeWay.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRopeWay; \ No newline at end of file diff --git a/icons/uil-rotate-360.js b/icons/uil-rotate-360.js index bba6aa46..2a986f72 100644 --- a/icons/uil-rotate-360.js +++ b/icons/uil-rotate-360.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRotate360 = (props) => { - const { color, size, ...otherProps } = props +const UilRotate360 = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRotate360.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRotate360.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRotate360; \ No newline at end of file diff --git a/icons/uil-rss-alt.js b/icons/uil-rss-alt.js index 90653275..376f27cf 100644 --- a/icons/uil-rss-alt.js +++ b/icons/uil-rss-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRssAlt = (props) => { - const { color, size, ...otherProps } = props +const UilRssAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRssAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRssAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRssAlt; \ No newline at end of file diff --git a/icons/uil-rss-interface.js b/icons/uil-rss-interface.js index 74d0750b..86927b69 100644 --- a/icons/uil-rss-interface.js +++ b/icons/uil-rss-interface.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRssInterface = (props) => { - const { color, size, ...otherProps } = props +const UilRssInterface = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRssInterface.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRssInterface.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRssInterface; \ No newline at end of file diff --git a/icons/uil-rss.js b/icons/uil-rss.js index 90e52173..c0d5d07a 100644 --- a/icons/uil-rss.js +++ b/icons/uil-rss.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRss = (props) => { - const { color, size, ...otherProps } = props +const UilRss = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRss.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRss.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRss; \ No newline at end of file diff --git a/icons/uil-ruler-combined.js b/icons/uil-ruler-combined.js index 81c8683d..a1b3701d 100644 --- a/icons/uil-ruler-combined.js +++ b/icons/uil-ruler-combined.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRulerCombined = (props) => { - const { color, size, ...otherProps } = props +const UilRulerCombined = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRulerCombined.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRulerCombined.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRulerCombined; \ No newline at end of file diff --git a/icons/uil-ruler.js b/icons/uil-ruler.js index 4604e7c9..66f26b18 100644 --- a/icons/uil-ruler.js +++ b/icons/uil-ruler.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRuler = (props) => { - const { color, size, ...otherProps } = props +const UilRuler = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRuler.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRuler.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRuler; \ No newline at end of file diff --git a/icons/uil-rupee-sign.js b/icons/uil-rupee-sign.js index 4bb70c1b..554c6da3 100644 --- a/icons/uil-rupee-sign.js +++ b/icons/uil-rupee-sign.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilRupeeSign = (props) => { - const { color, size, ...otherProps } = props +const UilRupeeSign = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilRupeeSign.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilRupeeSign.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilRupeeSign; \ No newline at end of file diff --git a/icons/uil-sad-cry.js b/icons/uil-sad-cry.js index 7c93b8ae..4a3fabf5 100644 --- a/icons/uil-sad-cry.js +++ b/icons/uil-sad-cry.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSadCry = (props) => { - const { color, size, ...otherProps } = props +const UilSadCry = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSadCry.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSadCry.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSadCry; \ No newline at end of file diff --git a/icons/uil-sad-crying.js b/icons/uil-sad-crying.js index 80be4d42..f1510d6f 100644 --- a/icons/uil-sad-crying.js +++ b/icons/uil-sad-crying.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSadCrying = (props) => { - const { color, size, ...otherProps } = props +const UilSadCrying = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSadCrying.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSadCrying.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSadCrying; \ No newline at end of file diff --git a/icons/uil-sad-dizzy.js b/icons/uil-sad-dizzy.js index dfeede82..06727464 100644 --- a/icons/uil-sad-dizzy.js +++ b/icons/uil-sad-dizzy.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSadDizzy = (props) => { - const { color, size, ...otherProps } = props +const UilSadDizzy = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSadDizzy.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSadDizzy.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSadDizzy; \ No newline at end of file diff --git a/icons/uil-sad-squint.js b/icons/uil-sad-squint.js index e910e65e..7a51bfd9 100644 --- a/icons/uil-sad-squint.js +++ b/icons/uil-sad-squint.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSadSquint = (props) => { - const { color, size, ...otherProps } = props +const UilSadSquint = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSadSquint.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSadSquint.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSadSquint; \ No newline at end of file diff --git a/icons/uil-sad.js b/icons/uil-sad.js index d1c21944..96f60b99 100644 --- a/icons/uil-sad.js +++ b/icons/uil-sad.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSad = (props) => { - const { color, size, ...otherProps } = props +const UilSad = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSad.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSad.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSad; \ No newline at end of file diff --git a/icons/uil-sanitizer-alt.js b/icons/uil-sanitizer-alt.js index 06f11b8b..b8e1946d 100644 --- a/icons/uil-sanitizer-alt.js +++ b/icons/uil-sanitizer-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSanitizerAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSanitizerAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSanitizerAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSanitizerAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSanitizerAlt; \ No newline at end of file diff --git a/icons/uil-sanitizer.js b/icons/uil-sanitizer.js index bf4ee63f..44582784 100644 --- a/icons/uil-sanitizer.js +++ b/icons/uil-sanitizer.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSanitizer = (props) => { - const { color, size, ...otherProps } = props +const UilSanitizer = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSanitizer.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSanitizer.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSanitizer; \ No newline at end of file diff --git a/icons/uil-save.js b/icons/uil-save.js index 55c6f6a3..691cc1ee 100644 --- a/icons/uil-save.js +++ b/icons/uil-save.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSave = (props) => { - const { color, size, ...otherProps } = props +const UilSave = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSave.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSave.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSave; \ No newline at end of file diff --git a/icons/uil-scaling-left.js b/icons/uil-scaling-left.js index 27cedf60..035887e6 100644 --- a/icons/uil-scaling-left.js +++ b/icons/uil-scaling-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilScalingLeft = (props) => { - const { color, size, ...otherProps } = props +const UilScalingLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilScalingLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilScalingLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilScalingLeft; \ No newline at end of file diff --git a/icons/uil-scaling-right.js b/icons/uil-scaling-right.js index 4fa2eb29..3fa615f5 100644 --- a/icons/uil-scaling-right.js +++ b/icons/uil-scaling-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilScalingRight = (props) => { - const { color, size, ...otherProps } = props +const UilScalingRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilScalingRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilScalingRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilScalingRight; \ No newline at end of file diff --git a/icons/uil-scenery.js b/icons/uil-scenery.js index 86eedd0e..0f967336 100644 --- a/icons/uil-scenery.js +++ b/icons/uil-scenery.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilScenery = (props) => { - const { color, size, ...otherProps } = props +const UilScenery = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilScenery.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilScenery.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilScenery; \ No newline at end of file diff --git a/icons/uil-schedule.js b/icons/uil-schedule.js index 83ca7ad7..3767f867 100644 --- a/icons/uil-schedule.js +++ b/icons/uil-schedule.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSchedule = (props) => { - const { color, size, ...otherProps } = props +const UilSchedule = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSchedule.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSchedule.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSchedule; \ No newline at end of file diff --git a/icons/uil-screw.js b/icons/uil-screw.js index 963c5c0b..93bfb0a4 100644 --- a/icons/uil-screw.js +++ b/icons/uil-screw.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilScrew = (props) => { - const { color, size, ...otherProps } = props +const UilScrew = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilScrew.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilScrew.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilScrew; \ No newline at end of file diff --git a/icons/uil-scroll-h.js b/icons/uil-scroll-h.js index f294cc3e..749f5259 100644 --- a/icons/uil-scroll-h.js +++ b/icons/uil-scroll-h.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilScrollH = (props) => { - const { color, size, ...otherProps } = props +const UilScrollH = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilScrollH.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilScrollH.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilScrollH; \ No newline at end of file diff --git a/icons/uil-scroll.js b/icons/uil-scroll.js index d9b94b08..d321ece5 100644 --- a/icons/uil-scroll.js +++ b/icons/uil-scroll.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilScroll = (props) => { - const { color, size, ...otherProps } = props +const UilScroll = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilScroll.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilScroll.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilScroll; \ No newline at end of file diff --git a/icons/uil-search-alt.js b/icons/uil-search-alt.js index 57011003..4382f9d9 100644 --- a/icons/uil-search-alt.js +++ b/icons/uil-search-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSearchAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSearchAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSearchAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSearchAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSearchAlt; \ No newline at end of file diff --git a/icons/uil-search-minus.js b/icons/uil-search-minus.js index a543b51e..a90d6154 100644 --- a/icons/uil-search-minus.js +++ b/icons/uil-search-minus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSearchMinus = (props) => { - const { color, size, ...otherProps } = props +const UilSearchMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSearchMinus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSearchMinus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSearchMinus; \ No newline at end of file diff --git a/icons/uil-search-plus.js b/icons/uil-search-plus.js index 133ef7c7..bb1999e2 100644 --- a/icons/uil-search-plus.js +++ b/icons/uil-search-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSearchPlus = (props) => { - const { color, size, ...otherProps } = props +const UilSearchPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSearchPlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSearchPlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSearchPlus; \ No newline at end of file diff --git a/icons/uil-search.js b/icons/uil-search.js index fe997159..3dbde628 100644 --- a/icons/uil-search.js +++ b/icons/uil-search.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSearch = (props) => { - const { color, size, ...otherProps } = props +const UilSearch = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSearch.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSearch.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSearch; \ No newline at end of file diff --git a/icons/uil-selfie.js b/icons/uil-selfie.js index 598349cb..5ae59252 100644 --- a/icons/uil-selfie.js +++ b/icons/uil-selfie.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSelfie = (props) => { - const { color, size, ...otherProps } = props +const UilSelfie = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSelfie.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSelfie.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSelfie; \ No newline at end of file diff --git a/icons/uil-server-alt.js b/icons/uil-server-alt.js index 6a73f453..3599516b 100644 --- a/icons/uil-server-alt.js +++ b/icons/uil-server-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilServerAlt = (props) => { - const { color, size, ...otherProps } = props +const UilServerAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilServerAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilServerAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilServerAlt; \ No newline at end of file diff --git a/icons/uil-server-connection.js b/icons/uil-server-connection.js index 8e02d5a1..ae38da02 100644 --- a/icons/uil-server-connection.js +++ b/icons/uil-server-connection.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilServerConnection = (props) => { - const { color, size, ...otherProps } = props +const UilServerConnection = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilServerConnection.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilServerConnection.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilServerConnection; \ No newline at end of file diff --git a/icons/uil-server-network-alt.js b/icons/uil-server-network-alt.js index 5dc9e1d5..f88ded82 100644 --- a/icons/uil-server-network-alt.js +++ b/icons/uil-server-network-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilServerNetworkAlt = (props) => { - const { color, size, ...otherProps } = props +const UilServerNetworkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilServerNetworkAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilServerNetworkAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilServerNetworkAlt; \ No newline at end of file diff --git a/icons/uil-server-network.js b/icons/uil-server-network.js index e4ff7ac9..fe3dc6c0 100644 --- a/icons/uil-server-network.js +++ b/icons/uil-server-network.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilServerNetwork = (props) => { - const { color, size, ...otherProps } = props +const UilServerNetwork = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilServerNetwork.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilServerNetwork.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilServerNetwork; \ No newline at end of file diff --git a/icons/uil-server.js b/icons/uil-server.js index f7403139..328959cd 100644 --- a/icons/uil-server.js +++ b/icons/uil-server.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilServer = (props) => { - const { color, size, ...otherProps } = props +const UilServer = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilServer.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilServer.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilServer; \ No newline at end of file diff --git a/icons/uil-servers.js b/icons/uil-servers.js index f5ea09a2..1500bfc0 100644 --- a/icons/uil-servers.js +++ b/icons/uil-servers.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilServers = (props) => { - const { color, size, ...otherProps } = props +const UilServers = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilServers.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilServers.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilServers; \ No newline at end of file diff --git a/icons/uil-servicemark.js b/icons/uil-servicemark.js index 89c5f9c1..74361026 100644 --- a/icons/uil-servicemark.js +++ b/icons/uil-servicemark.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilServicemark = (props) => { - const { color, size, ...otherProps } = props +const UilServicemark = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilServicemark.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilServicemark.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilServicemark; \ No newline at end of file diff --git a/icons/uil-setting.js b/icons/uil-setting.js index b7175977..894dc378 100644 --- a/icons/uil-setting.js +++ b/icons/uil-setting.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSetting = (props) => { - const { color, size, ...otherProps } = props +const UilSetting = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSetting.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSetting.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSetting; \ No newline at end of file diff --git a/icons/uil-share-alt.js b/icons/uil-share-alt.js index 1af5be2d..06655779 100644 --- a/icons/uil-share-alt.js +++ b/icons/uil-share-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShareAlt = (props) => { - const { color, size, ...otherProps } = props +const UilShareAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShareAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShareAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShareAlt; \ No newline at end of file diff --git a/icons/uil-share.js b/icons/uil-share.js index b3544194..3ae62b93 100644 --- a/icons/uil-share.js +++ b/icons/uil-share.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShare = (props) => { - const { color, size, ...otherProps } = props +const UilShare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShare; \ No newline at end of file diff --git a/icons/uil-shield-check.js b/icons/uil-shield-check.js index 81e0debb..7c7aa730 100644 --- a/icons/uil-shield-check.js +++ b/icons/uil-shield-check.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShieldCheck = (props) => { - const { color, size, ...otherProps } = props +const UilShieldCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShieldCheck.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShieldCheck.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShieldCheck; \ No newline at end of file diff --git a/icons/uil-shield-exclamation.js b/icons/uil-shield-exclamation.js index 532690c5..16ebe916 100644 --- a/icons/uil-shield-exclamation.js +++ b/icons/uil-shield-exclamation.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShieldExclamation = (props) => { - const { color, size, ...otherProps } = props +const UilShieldExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShieldExclamation.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShieldExclamation.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShieldExclamation; \ No newline at end of file diff --git a/icons/uil-shield-plus.js b/icons/uil-shield-plus.js index c71d4056..309fc397 100644 --- a/icons/uil-shield-plus.js +++ b/icons/uil-shield-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShieldPlus = (props) => { - const { color, size, ...otherProps } = props +const UilShieldPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShieldPlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShieldPlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShieldPlus; \ No newline at end of file diff --git a/icons/uil-shield-question.js b/icons/uil-shield-question.js index 6873a7ab..bb96367d 100644 --- a/icons/uil-shield-question.js +++ b/icons/uil-shield-question.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShieldQuestion = (props) => { - const { color, size, ...otherProps } = props +const UilShieldQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShieldQuestion.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShieldQuestion.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShieldQuestion; \ No newline at end of file diff --git a/icons/uil-shield-slash.js b/icons/uil-shield-slash.js index 36971a77..5ae38682 100644 --- a/icons/uil-shield-slash.js +++ b/icons/uil-shield-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShieldSlash = (props) => { - const { color, size, ...otherProps } = props +const UilShieldSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShieldSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShieldSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShieldSlash; \ No newline at end of file diff --git a/icons/uil-shield.js b/icons/uil-shield.js index 8b0ae681..8798f49d 100644 --- a/icons/uil-shield.js +++ b/icons/uil-shield.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShield = (props) => { - const { color, size, ...otherProps } = props +const UilShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShield.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShield.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShield; \ No newline at end of file diff --git a/icons/uil-ship.js b/icons/uil-ship.js index cc469bf0..98f1334d 100644 --- a/icons/uil-ship.js +++ b/icons/uil-ship.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShip = (props) => { - const { color, size, ...otherProps } = props +const UilShip = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShip.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShip.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShip; \ No newline at end of file diff --git a/icons/uil-shop.js b/icons/uil-shop.js index d48cb398..e284d29f 100644 --- a/icons/uil-shop.js +++ b/icons/uil-shop.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShop = (props) => { - const { color, size, ...otherProps } = props +const UilShop = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShop.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShop.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShop; \ No newline at end of file diff --git a/icons/uil-shopping-bag.js b/icons/uil-shopping-bag.js index d3bed978..ff2a327d 100644 --- a/icons/uil-shopping-bag.js +++ b/icons/uil-shopping-bag.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShoppingBag = (props) => { - const { color, size, ...otherProps } = props +const UilShoppingBag = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShoppingBag.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShoppingBag.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShoppingBag; \ No newline at end of file diff --git a/icons/uil-shopping-basket.js b/icons/uil-shopping-basket.js index 18a37d8b..b3102398 100644 --- a/icons/uil-shopping-basket.js +++ b/icons/uil-shopping-basket.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShoppingBasket = (props) => { - const { color, size, ...otherProps } = props +const UilShoppingBasket = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShoppingBasket.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShoppingBasket.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShoppingBasket; \ No newline at end of file diff --git a/icons/uil-shopping-cart-alt.js b/icons/uil-shopping-cart-alt.js index da379662..2c2d6374 100644 --- a/icons/uil-shopping-cart-alt.js +++ b/icons/uil-shopping-cart-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShoppingCartAlt = (props) => { - const { color, size, ...otherProps } = props +const UilShoppingCartAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShoppingCartAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShoppingCartAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShoppingCartAlt; \ No newline at end of file diff --git a/icons/uil-shopping-cart.js b/icons/uil-shopping-cart.js index 4ac7a246..4ac1f207 100644 --- a/icons/uil-shopping-cart.js +++ b/icons/uil-shopping-cart.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShoppingCart = (props) => { - const { color, size, ...otherProps } = props +const UilShoppingCart = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShoppingCart.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShoppingCart.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShoppingCart; \ No newline at end of file diff --git a/icons/uil-shovel.js b/icons/uil-shovel.js index e3449614..64b03422 100644 --- a/icons/uil-shovel.js +++ b/icons/uil-shovel.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShovel = (props) => { - const { color, size, ...otherProps } = props +const UilShovel = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShovel.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShovel.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShovel; \ No newline at end of file diff --git a/icons/uil-shrink.js b/icons/uil-shrink.js index e8dccbb5..331ac68e 100644 --- a/icons/uil-shrink.js +++ b/icons/uil-shrink.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShrink = (props) => { - const { color, size, ...otherProps } = props +const UilShrink = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShrink.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShrink.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShrink; \ No newline at end of file diff --git a/icons/uil-shuffle.js b/icons/uil-shuffle.js index b56a6ac8..10cb074c 100644 --- a/icons/uil-shuffle.js +++ b/icons/uil-shuffle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShuffle = (props) => { - const { color, size, ...otherProps } = props +const UilShuffle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShuffle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShuffle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShuffle; \ No newline at end of file diff --git a/icons/uil-shutter-alt.js b/icons/uil-shutter-alt.js index 72f16da4..79935aeb 100644 --- a/icons/uil-shutter-alt.js +++ b/icons/uil-shutter-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShutterAlt = (props) => { - const { color, size, ...otherProps } = props +const UilShutterAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShutterAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShutterAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShutterAlt; \ No newline at end of file diff --git a/icons/uil-shutter.js b/icons/uil-shutter.js index e9b19300..924062b6 100644 --- a/icons/uil-shutter.js +++ b/icons/uil-shutter.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilShutter = (props) => { - const { color, size, ...otherProps } = props +const UilShutter = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilShutter.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilShutter.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilShutter; \ No newline at end of file diff --git a/icons/uil-sick.js b/icons/uil-sick.js index 61e06b76..0104fbf0 100644 --- a/icons/uil-sick.js +++ b/icons/uil-sick.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSick = (props) => { - const { color, size, ...otherProps } = props +const UilSick = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSick.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSick.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSick; \ No newline at end of file diff --git a/icons/uil-sigma.js b/icons/uil-sigma.js index 8f93abf9..7ebe99b1 100644 --- a/icons/uil-sigma.js +++ b/icons/uil-sigma.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSigma = (props) => { - const { color, size, ...otherProps } = props +const UilSigma = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSigma.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSigma.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSigma; \ No newline at end of file diff --git a/icons/uil-sign-alt.js b/icons/uil-sign-alt.js index 1b0fd253..5fdda7ca 100644 --- a/icons/uil-sign-alt.js +++ b/icons/uil-sign-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSignAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSignAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSignAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSignAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSignAlt; \ No newline at end of file diff --git a/icons/uil-sign-in-alt.js b/icons/uil-sign-in-alt.js index 3789d51b..6e37f34f 100644 --- a/icons/uil-sign-in-alt.js +++ b/icons/uil-sign-in-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSignInAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSignInAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSignInAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSignInAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSignInAlt; \ No newline at end of file diff --git a/icons/uil-sign-left.js b/icons/uil-sign-left.js index a8831b49..2f36863d 100644 --- a/icons/uil-sign-left.js +++ b/icons/uil-sign-left.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSignLeft = (props) => { - const { color, size, ...otherProps } = props +const UilSignLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSignLeft.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSignLeft.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSignLeft; \ No newline at end of file diff --git a/icons/uil-sign-out-alt.js b/icons/uil-sign-out-alt.js index f7c77938..41f365c6 100644 --- a/icons/uil-sign-out-alt.js +++ b/icons/uil-sign-out-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSignOutAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSignOutAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSignOutAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSignOutAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSignOutAlt; \ No newline at end of file diff --git a/icons/uil-sign-right.js b/icons/uil-sign-right.js index 1b8b8afe..2a2d43a1 100644 --- a/icons/uil-sign-right.js +++ b/icons/uil-sign-right.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSignRight = (props) => { - const { color, size, ...otherProps } = props +const UilSignRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSignRight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSignRight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSignRight; \ No newline at end of file diff --git a/icons/uil-signal-alt-3.js b/icons/uil-signal-alt-3.js index 73e939cf..0ce32259 100644 --- a/icons/uil-signal-alt-3.js +++ b/icons/uil-signal-alt-3.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSignalAlt3 = (props) => { - const { color, size, ...otherProps } = props +const UilSignalAlt3 = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSignalAlt3.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSignalAlt3.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSignalAlt3; \ No newline at end of file diff --git a/icons/uil-signal-alt.js b/icons/uil-signal-alt.js index 7edd6fdf..a1068f2a 100644 --- a/icons/uil-signal-alt.js +++ b/icons/uil-signal-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSignalAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSignalAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSignalAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSignalAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSignalAlt; \ No newline at end of file diff --git a/icons/uil-signal.js b/icons/uil-signal.js index 0f4a0b7a..20be53a2 100644 --- a/icons/uil-signal.js +++ b/icons/uil-signal.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSignal = (props) => { - const { color, size, ...otherProps } = props +const UilSignal = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSignal.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSignal.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSignal; \ No newline at end of file diff --git a/icons/uil-signin.js b/icons/uil-signin.js index 87d3a721..bb764cf2 100644 --- a/icons/uil-signin.js +++ b/icons/uil-signin.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSignin = (props) => { - const { color, size, ...otherProps } = props +const UilSignin = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSignin.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSignin.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSignin; \ No newline at end of file diff --git a/icons/uil-signout.js b/icons/uil-signout.js index 39bcbcbd..7f212bdb 100644 --- a/icons/uil-signout.js +++ b/icons/uil-signout.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSignout = (props) => { - const { color, size, ...otherProps } = props +const UilSignout = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSignout.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSignout.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSignout; \ No newline at end of file diff --git a/icons/uil-silence.js b/icons/uil-silence.js index 136925a9..c4ed6035 100644 --- a/icons/uil-silence.js +++ b/icons/uil-silence.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSilence = (props) => { - const { color, size, ...otherProps } = props +const UilSilence = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSilence.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSilence.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSilence; \ No newline at end of file diff --git a/icons/uil-silent-squint.js b/icons/uil-silent-squint.js index 0498512a..91e3e8a4 100644 --- a/icons/uil-silent-squint.js +++ b/icons/uil-silent-squint.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSilentSquint = (props) => { - const { color, size, ...otherProps } = props +const UilSilentSquint = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSilentSquint.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSilentSquint.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSilentSquint; \ No newline at end of file diff --git a/icons/uil-sim-card.js b/icons/uil-sim-card.js index e0106a59..f100dc0e 100644 --- a/icons/uil-sim-card.js +++ b/icons/uil-sim-card.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSimCard = (props) => { - const { color, size, ...otherProps } = props +const UilSimCard = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSimCard.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSimCard.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSimCard; \ No newline at end of file diff --git a/icons/uil-sitemap.js b/icons/uil-sitemap.js index 572c7279..d795d7b5 100644 --- a/icons/uil-sitemap.js +++ b/icons/uil-sitemap.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSitemap = (props) => { - const { color, size, ...otherProps } = props +const UilSitemap = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSitemap.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSitemap.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSitemap; \ No newline at end of file diff --git a/icons/uil-skip-forward-alt.js b/icons/uil-skip-forward-alt.js index 33cb9280..ede631f9 100644 --- a/icons/uil-skip-forward-alt.js +++ b/icons/uil-skip-forward-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSkipForwardAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSkipForwardAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSkipForwardAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSkipForwardAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSkipForwardAlt; \ No newline at end of file diff --git a/icons/uil-skip-forward-circle.js b/icons/uil-skip-forward-circle.js index 317272d9..56e5c230 100644 --- a/icons/uil-skip-forward-circle.js +++ b/icons/uil-skip-forward-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSkipForwardCircle = (props) => { - const { color, size, ...otherProps } = props +const UilSkipForwardCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSkipForwardCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSkipForwardCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSkipForwardCircle; \ No newline at end of file diff --git a/icons/uil-skip-forward.js b/icons/uil-skip-forward.js index b409f331..4fc1aa43 100644 --- a/icons/uil-skip-forward.js +++ b/icons/uil-skip-forward.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSkipForward = (props) => { - const { color, size, ...otherProps } = props +const UilSkipForward = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSkipForward.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSkipForward.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSkipForward; \ No newline at end of file diff --git a/icons/uil-skype-alt.js b/icons/uil-skype-alt.js index 437e5339..07b92fe0 100644 --- a/icons/uil-skype-alt.js +++ b/icons/uil-skype-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSkypeAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSkypeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSkypeAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSkypeAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSkypeAlt; \ No newline at end of file diff --git a/icons/uil-skype.js b/icons/uil-skype.js index e2c92f66..ea16939d 100644 --- a/icons/uil-skype.js +++ b/icons/uil-skype.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSkype = (props) => { - const { color, size, ...otherProps } = props +const UilSkype = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSkype.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSkype.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSkype; \ No newline at end of file diff --git a/icons/uil-slack-alt.js b/icons/uil-slack-alt.js index 2579d87d..fe294c39 100644 --- a/icons/uil-slack-alt.js +++ b/icons/uil-slack-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSlackAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSlackAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSlackAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSlackAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSlackAlt; \ No newline at end of file diff --git a/icons/uil-slack.js b/icons/uil-slack.js index dfb5b59b..27dff3c9 100644 --- a/icons/uil-slack.js +++ b/icons/uil-slack.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSlack = (props) => { - const { color, size, ...otherProps } = props +const UilSlack = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSlack.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSlack.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSlack; \ No newline at end of file diff --git a/icons/uil-slider-h-range.js b/icons/uil-slider-h-range.js index ff0c51c9..b952266f 100644 --- a/icons/uil-slider-h-range.js +++ b/icons/uil-slider-h-range.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSliderHRange = (props) => { - const { color, size, ...otherProps } = props +const UilSliderHRange = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSliderHRange.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSliderHRange.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSliderHRange; \ No newline at end of file diff --git a/icons/uil-slider-h.js b/icons/uil-slider-h.js index d8b1141a..35fc8917 100644 --- a/icons/uil-slider-h.js +++ b/icons/uil-slider-h.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSliderH = (props) => { - const { color, size, ...otherProps } = props +const UilSliderH = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSliderH.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSliderH.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSliderH; \ No newline at end of file diff --git a/icons/uil-sliders-v-alt.js b/icons/uil-sliders-v-alt.js index 32d77c4f..206f0fe6 100644 --- a/icons/uil-sliders-v-alt.js +++ b/icons/uil-sliders-v-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSlidersVAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSlidersVAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSlidersVAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSlidersVAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSlidersVAlt; \ No newline at end of file diff --git a/icons/uil-sliders-v.js b/icons/uil-sliders-v.js index a3b8d667..8b723c4d 100644 --- a/icons/uil-sliders-v.js +++ b/icons/uil-sliders-v.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSlidersV = (props) => { - const { color, size, ...otherProps } = props +const UilSlidersV = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSlidersV.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSlidersV.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSlidersV; \ No newline at end of file diff --git a/icons/uil-smile-beam.js b/icons/uil-smile-beam.js index 0a474008..6641f93f 100644 --- a/icons/uil-smile-beam.js +++ b/icons/uil-smile-beam.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSmileBeam = (props) => { - const { color, size, ...otherProps } = props +const UilSmileBeam = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSmileBeam.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSmileBeam.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSmileBeam; \ No newline at end of file diff --git a/icons/uil-smile-dizzy.js b/icons/uil-smile-dizzy.js index c277da5d..5b66f089 100644 --- a/icons/uil-smile-dizzy.js +++ b/icons/uil-smile-dizzy.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSmileDizzy = (props) => { - const { color, size, ...otherProps } = props +const UilSmileDizzy = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSmileDizzy.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSmileDizzy.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSmileDizzy; \ No newline at end of file diff --git a/icons/uil-smile-squint-wink-alt.js b/icons/uil-smile-squint-wink-alt.js index 92c0612d..a8334f7c 100644 --- a/icons/uil-smile-squint-wink-alt.js +++ b/icons/uil-smile-squint-wink-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSmileSquintWinkAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSmileSquintWinkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSmileSquintWinkAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSmileSquintWinkAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSmileSquintWinkAlt; \ No newline at end of file diff --git a/icons/uil-smile-squint-wink.js b/icons/uil-smile-squint-wink.js index c1c3d071..093ca350 100644 --- a/icons/uil-smile-squint-wink.js +++ b/icons/uil-smile-squint-wink.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSmileSquintWink = (props) => { - const { color, size, ...otherProps } = props +const UilSmileSquintWink = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSmileSquintWink.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSmileSquintWink.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSmileSquintWink; \ No newline at end of file diff --git a/icons/uil-smile-wink-alt.js b/icons/uil-smile-wink-alt.js index 78378d7e..903fbf66 100644 --- a/icons/uil-smile-wink-alt.js +++ b/icons/uil-smile-wink-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSmileWinkAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSmileWinkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSmileWinkAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSmileWinkAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSmileWinkAlt; \ No newline at end of file diff --git a/icons/uil-smile-wink.js b/icons/uil-smile-wink.js index 5b05046b..202c11d4 100644 --- a/icons/uil-smile-wink.js +++ b/icons/uil-smile-wink.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSmileWink = (props) => { - const { color, size, ...otherProps } = props +const UilSmileWink = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSmileWink.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSmileWink.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSmileWink; \ No newline at end of file diff --git a/icons/uil-smile.js b/icons/uil-smile.js index ea002257..4ee520bd 100644 --- a/icons/uil-smile.js +++ b/icons/uil-smile.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSmile = (props) => { - const { color, size, ...otherProps } = props +const UilSmile = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSmile.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSmile.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSmile; \ No newline at end of file diff --git a/icons/uil-snapchat-alt.js b/icons/uil-snapchat-alt.js index 2b913f13..9235efbf 100644 --- a/icons/uil-snapchat-alt.js +++ b/icons/uil-snapchat-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSnapchatAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSnapchatAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSnapchatAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSnapchatAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSnapchatAlt; \ No newline at end of file diff --git a/icons/uil-snapchat-ghost.js b/icons/uil-snapchat-ghost.js index 7fbafe70..da0fa4c3 100644 --- a/icons/uil-snapchat-ghost.js +++ b/icons/uil-snapchat-ghost.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSnapchatGhost = (props) => { - const { color, size, ...otherProps } = props +const UilSnapchatGhost = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSnapchatGhost.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSnapchatGhost.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSnapchatGhost; \ No newline at end of file diff --git a/icons/uil-snapchat-square.js b/icons/uil-snapchat-square.js index f79e7f30..d3eaa435 100644 --- a/icons/uil-snapchat-square.js +++ b/icons/uil-snapchat-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSnapchatSquare = (props) => { - const { color, size, ...otherProps } = props +const UilSnapchatSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSnapchatSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSnapchatSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSnapchatSquare; \ No newline at end of file diff --git a/icons/uil-snow-flake.js b/icons/uil-snow-flake.js index b81e0dac..ffbe3abe 100644 --- a/icons/uil-snow-flake.js +++ b/icons/uil-snow-flake.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSnowFlake = (props) => { - const { color, size, ...otherProps } = props +const UilSnowFlake = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSnowFlake.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSnowFlake.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSnowFlake; \ No newline at end of file diff --git a/icons/uil-snowflake-alt.js b/icons/uil-snowflake-alt.js index 83cbcc74..ce10a249 100644 --- a/icons/uil-snowflake-alt.js +++ b/icons/uil-snowflake-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSnowflakeAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSnowflakeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSnowflakeAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSnowflakeAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSnowflakeAlt; \ No newline at end of file diff --git a/icons/uil-snowflake.js b/icons/uil-snowflake.js index 1f2bf76f..839c6b59 100644 --- a/icons/uil-snowflake.js +++ b/icons/uil-snowflake.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSnowflake = (props) => { - const { color, size, ...otherProps } = props +const UilSnowflake = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSnowflake.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSnowflake.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSnowflake; \ No newline at end of file diff --git a/icons/uil-social-distancing.js b/icons/uil-social-distancing.js index bf1c8575..ea3b330a 100644 --- a/icons/uil-social-distancing.js +++ b/icons/uil-social-distancing.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSocialDistancing = (props) => { - const { color, size, ...otherProps } = props +const UilSocialDistancing = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSocialDistancing.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSocialDistancing.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSocialDistancing; \ No newline at end of file diff --git a/icons/uil-sort-amount-down.js b/icons/uil-sort-amount-down.js index ddb54acc..f1c5d4b5 100644 --- a/icons/uil-sort-amount-down.js +++ b/icons/uil-sort-amount-down.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSortAmountDown = (props) => { - const { color, size, ...otherProps } = props +const UilSortAmountDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSortAmountDown.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSortAmountDown.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSortAmountDown; \ No newline at end of file diff --git a/icons/uil-sort-amount-up.js b/icons/uil-sort-amount-up.js index e92590fe..18f2e753 100644 --- a/icons/uil-sort-amount-up.js +++ b/icons/uil-sort-amount-up.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSortAmountUp = (props) => { - const { color, size, ...otherProps } = props +const UilSortAmountUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSortAmountUp.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSortAmountUp.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSortAmountUp; \ No newline at end of file diff --git a/icons/uil-sort.js b/icons/uil-sort.js index a62a7a85..be6ddd84 100644 --- a/icons/uil-sort.js +++ b/icons/uil-sort.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSort = (props) => { - const { color, size, ...otherProps } = props +const UilSort = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSort.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSort.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSort; \ No newline at end of file diff --git a/icons/uil-sorting.js b/icons/uil-sorting.js index e94c27e5..40624e0d 100644 --- a/icons/uil-sorting.js +++ b/icons/uil-sorting.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSorting = (props) => { - const { color, size, ...otherProps } = props +const UilSorting = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSorting.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSorting.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSorting; \ No newline at end of file diff --git a/icons/uil-space-key.js b/icons/uil-space-key.js index 5f7d9f95..63e2d978 100644 --- a/icons/uil-space-key.js +++ b/icons/uil-space-key.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSpaceKey = (props) => { - const { color, size, ...otherProps } = props +const UilSpaceKey = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSpaceKey.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSpaceKey.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSpaceKey; \ No newline at end of file diff --git a/icons/uil-spade.js b/icons/uil-spade.js index ee6be904..685527c6 100644 --- a/icons/uil-spade.js +++ b/icons/uil-spade.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSpade = (props) => { - const { color, size, ...otherProps } = props +const UilSpade = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSpade.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSpade.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSpade; \ No newline at end of file diff --git a/icons/uil-sperms.js b/icons/uil-sperms.js index 9bc0ce3a..a2bc1c67 100644 --- a/icons/uil-sperms.js +++ b/icons/uil-sperms.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSperms = (props) => { - const { color, size, ...otherProps } = props +const UilSperms = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSperms.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSperms.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSperms; \ No newline at end of file diff --git a/icons/uil-spin.js b/icons/uil-spin.js index 568b3925..0e006b07 100644 --- a/icons/uil-spin.js +++ b/icons/uil-spin.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSpin = (props) => { - const { color, size, ...otherProps } = props +const UilSpin = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSpin.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSpin.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSpin; \ No newline at end of file diff --git a/icons/uil-spinner-alt.js b/icons/uil-spinner-alt.js index f5b4cd1a..68809468 100644 --- a/icons/uil-spinner-alt.js +++ b/icons/uil-spinner-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSpinnerAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSpinnerAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSpinnerAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSpinnerAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSpinnerAlt; \ No newline at end of file diff --git a/icons/uil-spinner.js b/icons/uil-spinner.js index 736740cc..82df42c4 100644 --- a/icons/uil-spinner.js +++ b/icons/uil-spinner.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSpinner = (props) => { - const { color, size, ...otherProps } = props +const UilSpinner = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSpinner.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSpinner.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSpinner; \ No newline at end of file diff --git a/icons/uil-square-full.js b/icons/uil-square-full.js index ef99e354..07748b41 100644 --- a/icons/uil-square-full.js +++ b/icons/uil-square-full.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSquareFull = (props) => { - const { color, size, ...otherProps } = props +const UilSquareFull = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSquareFull.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSquareFull.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSquareFull; \ No newline at end of file diff --git a/icons/uil-square-shape.js b/icons/uil-square-shape.js index 2c3b0b63..bc323ae1 100644 --- a/icons/uil-square-shape.js +++ b/icons/uil-square-shape.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSquareShape = (props) => { - const { color, size, ...otherProps } = props +const UilSquareShape = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSquareShape.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSquareShape.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSquareShape; \ No newline at end of file diff --git a/icons/uil-square.js b/icons/uil-square.js index c28f54df..80851a12 100644 --- a/icons/uil-square.js +++ b/icons/uil-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSquare = (props) => { - const { color, size, ...otherProps } = props +const UilSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSquare; \ No newline at end of file diff --git a/icons/uil-squint.js b/icons/uil-squint.js index 438cacc6..e86f4917 100644 --- a/icons/uil-squint.js +++ b/icons/uil-squint.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSquint = (props) => { - const { color, size, ...otherProps } = props +const UilSquint = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSquint.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSquint.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSquint; \ No newline at end of file diff --git a/icons/uil-star-half-alt.js b/icons/uil-star-half-alt.js index f2374dbf..16ea7dc3 100644 --- a/icons/uil-star-half-alt.js +++ b/icons/uil-star-half-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStarHalfAlt = (props) => { - const { color, size, ...otherProps } = props +const UilStarHalfAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStarHalfAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStarHalfAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStarHalfAlt; \ No newline at end of file diff --git a/icons/uil-star.js b/icons/uil-star.js index 469ceb00..7376f8aa 100644 --- a/icons/uil-star.js +++ b/icons/uil-star.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStar = (props) => { - const { color, size, ...otherProps } = props +const UilStar = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStar.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStar.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStar; \ No newline at end of file diff --git a/icons/uil-step-backward-alt.js b/icons/uil-step-backward-alt.js index c6cc88bc..879611f3 100644 --- a/icons/uil-step-backward-alt.js +++ b/icons/uil-step-backward-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStepBackwardAlt = (props) => { - const { color, size, ...otherProps } = props +const UilStepBackwardAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStepBackwardAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStepBackwardAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStepBackwardAlt; \ No newline at end of file diff --git a/icons/uil-step-backward-circle.js b/icons/uil-step-backward-circle.js index 4e5e871c..c6deb2da 100644 --- a/icons/uil-step-backward-circle.js +++ b/icons/uil-step-backward-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStepBackwardCircle = (props) => { - const { color, size, ...otherProps } = props +const UilStepBackwardCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStepBackwardCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStepBackwardCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStepBackwardCircle; \ No newline at end of file diff --git a/icons/uil-step-backward.js b/icons/uil-step-backward.js index 255b5122..2e04479e 100644 --- a/icons/uil-step-backward.js +++ b/icons/uil-step-backward.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStepBackward = (props) => { - const { color, size, ...otherProps } = props +const UilStepBackward = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStepBackward.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStepBackward.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStepBackward; \ No newline at end of file diff --git a/icons/uil-step-forward.js b/icons/uil-step-forward.js index 78aba85c..9809e3f9 100644 --- a/icons/uil-step-forward.js +++ b/icons/uil-step-forward.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStepForward = (props) => { - const { color, size, ...otherProps } = props +const UilStepForward = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStepForward.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStepForward.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStepForward; \ No newline at end of file diff --git a/icons/uil-stethoscope-alt.js b/icons/uil-stethoscope-alt.js index c260c84a..77c32770 100644 --- a/icons/uil-stethoscope-alt.js +++ b/icons/uil-stethoscope-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStethoscopeAlt = (props) => { - const { color, size, ...otherProps } = props +const UilStethoscopeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStethoscopeAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStethoscopeAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStethoscopeAlt; \ No newline at end of file diff --git a/icons/uil-stethoscope.js b/icons/uil-stethoscope.js index 502e35fb..a2ed508a 100644 --- a/icons/uil-stethoscope.js +++ b/icons/uil-stethoscope.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStethoscope = (props) => { - const { color, size, ...otherProps } = props +const UilStethoscope = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStethoscope.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStethoscope.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStethoscope; \ No newline at end of file diff --git a/icons/uil-stop-circle.js b/icons/uil-stop-circle.js index 854b33b3..b2d11c56 100644 --- a/icons/uil-stop-circle.js +++ b/icons/uil-stop-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStopCircle = (props) => { - const { color, size, ...otherProps } = props +const UilStopCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStopCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStopCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStopCircle; \ No newline at end of file diff --git a/icons/uil-stopwatch-slash.js b/icons/uil-stopwatch-slash.js index 993b5153..c3cbe7d0 100644 --- a/icons/uil-stopwatch-slash.js +++ b/icons/uil-stopwatch-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStopwatchSlash = (props) => { - const { color, size, ...otherProps } = props +const UilStopwatchSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStopwatchSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStopwatchSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStopwatchSlash; \ No newline at end of file diff --git a/icons/uil-stopwatch.js b/icons/uil-stopwatch.js index b1dba901..5709d5d3 100644 --- a/icons/uil-stopwatch.js +++ b/icons/uil-stopwatch.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStopwatch = (props) => { - const { color, size, ...otherProps } = props +const UilStopwatch = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStopwatch.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStopwatch.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStopwatch; \ No newline at end of file diff --git a/icons/uil-store-alt.js b/icons/uil-store-alt.js index 760ff59e..6347fc89 100644 --- a/icons/uil-store-alt.js +++ b/icons/uil-store-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStoreAlt = (props) => { - const { color, size, ...otherProps } = props +const UilStoreAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStoreAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStoreAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStoreAlt; \ No newline at end of file diff --git a/icons/uil-store-slash.js b/icons/uil-store-slash.js index 5252b1be..7848c31a 100644 --- a/icons/uil-store-slash.js +++ b/icons/uil-store-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStoreSlash = (props) => { - const { color, size, ...otherProps } = props +const UilStoreSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStoreSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStoreSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStoreSlash; \ No newline at end of file diff --git a/icons/uil-store.js b/icons/uil-store.js index 7423c0eb..123e3664 100644 --- a/icons/uil-store.js +++ b/icons/uil-store.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStore = (props) => { - const { color, size, ...otherProps } = props +const UilStore = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStore.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStore.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStore; \ No newline at end of file diff --git a/icons/uil-streering.js b/icons/uil-streering.js index 91465916..05d6fd4b 100644 --- a/icons/uil-streering.js +++ b/icons/uil-streering.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStreering = (props) => { - const { color, size, ...otherProps } = props +const UilStreering = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStreering.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStreering.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStreering; \ No newline at end of file diff --git a/icons/uil-stretcher.js b/icons/uil-stretcher.js index 0a903e06..5e09a56f 100644 --- a/icons/uil-stretcher.js +++ b/icons/uil-stretcher.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilStretcher = (props) => { - const { color, size, ...otherProps } = props +const UilStretcher = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilStretcher.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilStretcher.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilStretcher; \ No newline at end of file diff --git a/icons/uil-subject.js b/icons/uil-subject.js index 7af02303..6397f610 100644 --- a/icons/uil-subject.js +++ b/icons/uil-subject.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSubject = (props) => { - const { color, size, ...otherProps } = props +const UilSubject = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSubject.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSubject.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSubject; \ No newline at end of file diff --git a/icons/uil-subway-alt.js b/icons/uil-subway-alt.js index e940dea6..af53b34c 100644 --- a/icons/uil-subway-alt.js +++ b/icons/uil-subway-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSubwayAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSubwayAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSubwayAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSubwayAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSubwayAlt; \ No newline at end of file diff --git a/icons/uil-subway.js b/icons/uil-subway.js index 60492720..05cd8ba1 100644 --- a/icons/uil-subway.js +++ b/icons/uil-subway.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSubway = (props) => { - const { color, size, ...otherProps } = props +const UilSubway = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSubway.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSubway.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSubway; \ No newline at end of file diff --git a/icons/uil-suitcase-alt.js b/icons/uil-suitcase-alt.js index 65b2541b..2ecfc393 100644 --- a/icons/uil-suitcase-alt.js +++ b/icons/uil-suitcase-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSuitcaseAlt = (props) => { - const { color, size, ...otherProps } = props +const UilSuitcaseAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSuitcaseAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSuitcaseAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSuitcaseAlt; \ No newline at end of file diff --git a/icons/uil-suitcase.js b/icons/uil-suitcase.js index b59bb06b..49873424 100644 --- a/icons/uil-suitcase.js +++ b/icons/uil-suitcase.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSuitcase = (props) => { - const { color, size, ...otherProps } = props +const UilSuitcase = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSuitcase.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSuitcase.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSuitcase; \ No newline at end of file diff --git a/icons/uil-sun.js b/icons/uil-sun.js index a047a68b..9de340d2 100644 --- a/icons/uil-sun.js +++ b/icons/uil-sun.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSun = (props) => { - const { color, size, ...otherProps } = props +const UilSun = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSun.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSun.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSun; \ No newline at end of file diff --git a/icons/uil-sunset.js b/icons/uil-sunset.js index 73dd5777..7776e862 100644 --- a/icons/uil-sunset.js +++ b/icons/uil-sunset.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSunset = (props) => { - const { color, size, ...otherProps } = props +const UilSunset = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSunset.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSunset.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSunset; \ No newline at end of file diff --git a/icons/uil-surprise.js b/icons/uil-surprise.js index 9c02e82b..87006d7c 100644 --- a/icons/uil-surprise.js +++ b/icons/uil-surprise.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSurprise = (props) => { - const { color, size, ...otherProps } = props +const UilSurprise = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSurprise.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSurprise.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSurprise; \ No newline at end of file diff --git a/icons/uil-swatchbook.js b/icons/uil-swatchbook.js index e1089a8c..af8143ce 100644 --- a/icons/uil-swatchbook.js +++ b/icons/uil-swatchbook.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSwatchbook = (props) => { - const { color, size, ...otherProps } = props +const UilSwatchbook = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSwatchbook.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSwatchbook.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSwatchbook; \ No newline at end of file diff --git a/icons/uil-swiggy.js b/icons/uil-swiggy.js index f59f2b05..9c19c6cc 100644 --- a/icons/uil-swiggy.js +++ b/icons/uil-swiggy.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSwiggy = (props) => { - const { color, size, ...otherProps } = props +const UilSwiggy = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSwiggy.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSwiggy.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSwiggy; \ No newline at end of file diff --git a/icons/uil-swimmer.js b/icons/uil-swimmer.js index 0b2ae5b9..47743065 100644 --- a/icons/uil-swimmer.js +++ b/icons/uil-swimmer.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSwimmer = (props) => { - const { color, size, ...otherProps } = props +const UilSwimmer = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSwimmer.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSwimmer.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSwimmer; \ No newline at end of file diff --git a/icons/uil-sync-exclamation.js b/icons/uil-sync-exclamation.js index 8f391f35..1a948479 100644 --- a/icons/uil-sync-exclamation.js +++ b/icons/uil-sync-exclamation.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSyncExclamation = (props) => { - const { color, size, ...otherProps } = props +const UilSyncExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSyncExclamation.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSyncExclamation.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSyncExclamation; \ No newline at end of file diff --git a/icons/uil-sync-slash.js b/icons/uil-sync-slash.js index 28f538a1..480998de 100644 --- a/icons/uil-sync-slash.js +++ b/icons/uil-sync-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSyncSlash = (props) => { - const { color, size, ...otherProps } = props +const UilSyncSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSyncSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSyncSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSyncSlash; \ No newline at end of file diff --git a/icons/uil-sync.js b/icons/uil-sync.js index 879884c6..17f77b8e 100644 --- a/icons/uil-sync.js +++ b/icons/uil-sync.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSync = (props) => { - const { color, size, ...otherProps } = props +const UilSync = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSync.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSync.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSync; \ No newline at end of file diff --git a/icons/uil-syringe.js b/icons/uil-syringe.js index e9db4744..7ccdf244 100644 --- a/icons/uil-syringe.js +++ b/icons/uil-syringe.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilSyringe = (props) => { - const { color, size, ...otherProps } = props +const UilSyringe = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilSyringe.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilSyringe.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilSyringe; \ No newline at end of file diff --git a/icons/uil-table-tennis.js b/icons/uil-table-tennis.js index 05972b97..64195197 100644 --- a/icons/uil-table-tennis.js +++ b/icons/uil-table-tennis.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTableTennis = (props) => { - const { color, size, ...otherProps } = props +const UilTableTennis = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTableTennis.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTableTennis.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTableTennis; \ No newline at end of file diff --git a/icons/uil-table.js b/icons/uil-table.js index ecca573a..ba37e2a9 100644 --- a/icons/uil-table.js +++ b/icons/uil-table.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTable = (props) => { - const { color, size, ...otherProps } = props +const UilTable = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTable.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTable.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTable; \ No newline at end of file diff --git a/icons/uil-tablet.js b/icons/uil-tablet.js index 8b988a6c..2d0c8cfa 100644 --- a/icons/uil-tablet.js +++ b/icons/uil-tablet.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTablet = (props) => { - const { color, size, ...otherProps } = props +const UilTablet = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTablet.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTablet.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTablet; \ No newline at end of file diff --git a/icons/uil-tablets.js b/icons/uil-tablets.js index b31dff57..def0103e 100644 --- a/icons/uil-tablets.js +++ b/icons/uil-tablets.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTablets = (props) => { - const { color, size, ...otherProps } = props +const UilTablets = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTablets.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTablets.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTablets; \ No newline at end of file diff --git a/icons/uil-tachometer-fast-alt.js b/icons/uil-tachometer-fast-alt.js index be239372..461aed11 100644 --- a/icons/uil-tachometer-fast-alt.js +++ b/icons/uil-tachometer-fast-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTachometerFastAlt = (props) => { - const { color, size, ...otherProps } = props +const UilTachometerFastAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTachometerFastAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTachometerFastAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTachometerFastAlt; \ No newline at end of file diff --git a/icons/uil-tachometer-fast.js b/icons/uil-tachometer-fast.js index 61fc31ed..d4f4f114 100644 --- a/icons/uil-tachometer-fast.js +++ b/icons/uil-tachometer-fast.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTachometerFast = (props) => { - const { color, size, ...otherProps } = props +const UilTachometerFast = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTachometerFast.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTachometerFast.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTachometerFast; \ No newline at end of file diff --git a/icons/uil-tag-alt.js b/icons/uil-tag-alt.js index dabdc5cf..6c80693b 100644 --- a/icons/uil-tag-alt.js +++ b/icons/uil-tag-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTagAlt = (props) => { - const { color, size, ...otherProps } = props +const UilTagAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTagAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTagAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTagAlt; \ No newline at end of file diff --git a/icons/uil-tag.js b/icons/uil-tag.js index c1ba560b..8fe89167 100644 --- a/icons/uil-tag.js +++ b/icons/uil-tag.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTag = (props) => { - const { color, size, ...otherProps } = props +const UilTag = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTag.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTag.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTag; \ No newline at end of file diff --git a/icons/uil-tape.js b/icons/uil-tape.js index 22a9b78c..25a34807 100644 --- a/icons/uil-tape.js +++ b/icons/uil-tape.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTape = (props) => { - const { color, size, ...otherProps } = props +const UilTape = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTape.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTape.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTape; \ No newline at end of file diff --git a/icons/uil-taxi.js b/icons/uil-taxi.js index e7174da4..44c6ddd3 100644 --- a/icons/uil-taxi.js +++ b/icons/uil-taxi.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTaxi = (props) => { - const { color, size, ...otherProps } = props +const UilTaxi = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTaxi.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTaxi.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTaxi; \ No newline at end of file diff --git a/icons/uil-tear.js b/icons/uil-tear.js index e3161066..cc4551b5 100644 --- a/icons/uil-tear.js +++ b/icons/uil-tear.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTear = (props) => { - const { color, size, ...otherProps } = props +const UilTear = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTear.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTear.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTear; \ No newline at end of file diff --git a/icons/uil-telegram-alt.js b/icons/uil-telegram-alt.js index 5389eb7e..04841275 100644 --- a/icons/uil-telegram-alt.js +++ b/icons/uil-telegram-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTelegramAlt = (props) => { - const { color, size, ...otherProps } = props +const UilTelegramAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTelegramAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTelegramAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTelegramAlt; \ No newline at end of file diff --git a/icons/uil-telegram.js b/icons/uil-telegram.js index 147c53b9..78f9c0c6 100644 --- a/icons/uil-telegram.js +++ b/icons/uil-telegram.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTelegram = (props) => { - const { color, size, ...otherProps } = props +const UilTelegram = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTelegram.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTelegram.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTelegram; \ No newline at end of file diff --git a/icons/uil-telescope.js b/icons/uil-telescope.js index 1f37d2b9..3dafe9df 100644 --- a/icons/uil-telescope.js +++ b/icons/uil-telescope.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTelescope = (props) => { - const { color, size, ...otherProps } = props +const UilTelescope = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTelescope.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTelescope.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTelescope; \ No newline at end of file diff --git a/icons/uil-temperature-empty.js b/icons/uil-temperature-empty.js index ed7a73da..6da1d62a 100644 --- a/icons/uil-temperature-empty.js +++ b/icons/uil-temperature-empty.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTemperatureEmpty = (props) => { - const { color, size, ...otherProps } = props +const UilTemperatureEmpty = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTemperatureEmpty.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTemperatureEmpty.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTemperatureEmpty; \ No newline at end of file diff --git a/icons/uil-temperature-half.js b/icons/uil-temperature-half.js index 92249c64..d2eade2a 100644 --- a/icons/uil-temperature-half.js +++ b/icons/uil-temperature-half.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTemperatureHalf = (props) => { - const { color, size, ...otherProps } = props +const UilTemperatureHalf = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTemperatureHalf.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTemperatureHalf.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTemperatureHalf; \ No newline at end of file diff --git a/icons/uil-temperature-minus.js b/icons/uil-temperature-minus.js index a79f062f..76c5a412 100644 --- a/icons/uil-temperature-minus.js +++ b/icons/uil-temperature-minus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTemperatureMinus = (props) => { - const { color, size, ...otherProps } = props +const UilTemperatureMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTemperatureMinus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTemperatureMinus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTemperatureMinus; \ No newline at end of file diff --git a/icons/uil-temperature-plus.js b/icons/uil-temperature-plus.js index f62dcdd0..16e8cc3c 100644 --- a/icons/uil-temperature-plus.js +++ b/icons/uil-temperature-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTemperaturePlus = (props) => { - const { color, size, ...otherProps } = props +const UilTemperaturePlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTemperaturePlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTemperaturePlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTemperaturePlus; \ No newline at end of file diff --git a/icons/uil-temperature-quarter.js b/icons/uil-temperature-quarter.js index 0940db66..c7c04168 100644 --- a/icons/uil-temperature-quarter.js +++ b/icons/uil-temperature-quarter.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTemperatureQuarter = (props) => { - const { color, size, ...otherProps } = props +const UilTemperatureQuarter = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTemperatureQuarter.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTemperatureQuarter.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTemperatureQuarter; \ No newline at end of file diff --git a/icons/uil-temperature-three-quarter.js b/icons/uil-temperature-three-quarter.js index 28000860..b8cc43db 100644 --- a/icons/uil-temperature-three-quarter.js +++ b/icons/uil-temperature-three-quarter.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTemperatureThreeQuarter = (props) => { - const { color, size, ...otherProps } = props +const UilTemperatureThreeQuarter = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTemperatureThreeQuarter.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTemperatureThreeQuarter.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTemperatureThreeQuarter; \ No newline at end of file diff --git a/icons/uil-temperature.js b/icons/uil-temperature.js index 9bea5a97..e8c5b061 100644 --- a/icons/uil-temperature.js +++ b/icons/uil-temperature.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTemperature = (props) => { - const { color, size, ...otherProps } = props +const UilTemperature = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTemperature.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTemperature.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTemperature; \ No newline at end of file diff --git a/icons/uil-tennis-ball.js b/icons/uil-tennis-ball.js index 61d70938..18561883 100644 --- a/icons/uil-tennis-ball.js +++ b/icons/uil-tennis-ball.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTennisBall = (props) => { - const { color, size, ...otherProps } = props +const UilTennisBall = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTennisBall.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTennisBall.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTennisBall; \ No newline at end of file diff --git a/icons/uil-text-fields.js b/icons/uil-text-fields.js index 4550ca6c..8af144eb 100644 --- a/icons/uil-text-fields.js +++ b/icons/uil-text-fields.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTextFields = (props) => { - const { color, size, ...otherProps } = props +const UilTextFields = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTextFields.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTextFields.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTextFields; \ No newline at end of file diff --git a/icons/uil-text-size.js b/icons/uil-text-size.js index 99c764de..c4616b0f 100644 --- a/icons/uil-text-size.js +++ b/icons/uil-text-size.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTextSize = (props) => { - const { color, size, ...otherProps } = props +const UilTextSize = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTextSize.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTextSize.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTextSize; \ No newline at end of file diff --git a/icons/uil-text-strike-through.js b/icons/uil-text-strike-through.js index cac3a1c3..9a001259 100644 --- a/icons/uil-text-strike-through.js +++ b/icons/uil-text-strike-through.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTextStrikeThrough = (props) => { - const { color, size, ...otherProps } = props +const UilTextStrikeThrough = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTextStrikeThrough.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTextStrikeThrough.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTextStrikeThrough; \ No newline at end of file diff --git a/icons/uil-text.js b/icons/uil-text.js index 727763d9..e715a995 100644 --- a/icons/uil-text.js +++ b/icons/uil-text.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilText = (props) => { - const { color, size, ...otherProps } = props +const UilText = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilText.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilText.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilText; \ No newline at end of file diff --git a/icons/uil-th-large.js b/icons/uil-th-large.js index f6e91e73..7d9636f6 100644 --- a/icons/uil-th-large.js +++ b/icons/uil-th-large.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilThLarge = (props) => { - const { color, size, ...otherProps } = props +const UilThLarge = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilThLarge.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilThLarge.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilThLarge; \ No newline at end of file diff --git a/icons/uil-th-slash.js b/icons/uil-th-slash.js index 59958072..ee2272a5 100644 --- a/icons/uil-th-slash.js +++ b/icons/uil-th-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilThSlash = (props) => { - const { color, size, ...otherProps } = props +const UilThSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilThSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilThSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilThSlash; \ No newline at end of file diff --git a/icons/uil-th.js b/icons/uil-th.js index fcf790cd..b3cf2431 100644 --- a/icons/uil-th.js +++ b/icons/uil-th.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTh = (props) => { - const { color, size, ...otherProps } = props +const UilTh = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTh.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTh.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTh; \ No newline at end of file diff --git a/icons/uil-thermometer.js b/icons/uil-thermometer.js index 1cb0f3d9..09217f78 100644 --- a/icons/uil-thermometer.js +++ b/icons/uil-thermometer.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilThermometer = (props) => { - const { color, size, ...otherProps } = props +const UilThermometer = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilThermometer.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilThermometer.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilThermometer; \ No newline at end of file diff --git a/icons/uil-thumbs-down.js b/icons/uil-thumbs-down.js index ccae8ed4..406a8e15 100644 --- a/icons/uil-thumbs-down.js +++ b/icons/uil-thumbs-down.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilThumbsDown = (props) => { - const { color, size, ...otherProps } = props +const UilThumbsDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilThumbsDown.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilThumbsDown.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilThumbsDown; \ No newline at end of file diff --git a/icons/uil-thumbs-up.js b/icons/uil-thumbs-up.js index 7d39c565..46a7cc1e 100644 --- a/icons/uil-thumbs-up.js +++ b/icons/uil-thumbs-up.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilThumbsUp = (props) => { - const { color, size, ...otherProps } = props +const UilThumbsUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilThumbsUp.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilThumbsUp.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilThumbsUp; \ No newline at end of file diff --git a/icons/uil-thunderstorm-moon.js b/icons/uil-thunderstorm-moon.js index c88f1099..ff396370 100644 --- a/icons/uil-thunderstorm-moon.js +++ b/icons/uil-thunderstorm-moon.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilThunderstormMoon = (props) => { - const { color, size, ...otherProps } = props +const UilThunderstormMoon = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilThunderstormMoon.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilThunderstormMoon.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilThunderstormMoon; \ No newline at end of file diff --git a/icons/uil-thunderstorm-sun.js b/icons/uil-thunderstorm-sun.js index a782d41b..d291ceee 100644 --- a/icons/uil-thunderstorm-sun.js +++ b/icons/uil-thunderstorm-sun.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilThunderstormSun = (props) => { - const { color, size, ...otherProps } = props +const UilThunderstormSun = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilThunderstormSun.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilThunderstormSun.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilThunderstormSun; \ No newline at end of file diff --git a/icons/uil-thunderstorm.js b/icons/uil-thunderstorm.js index af1d1117..aa7e184e 100644 --- a/icons/uil-thunderstorm.js +++ b/icons/uil-thunderstorm.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilThunderstorm = (props) => { - const { color, size, ...otherProps } = props +const UilThunderstorm = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilThunderstorm.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilThunderstorm.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilThunderstorm; \ No newline at end of file diff --git a/icons/uil-ticket.js b/icons/uil-ticket.js index e46323d4..6da7225b 100644 --- a/icons/uil-ticket.js +++ b/icons/uil-ticket.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTicket = (props) => { - const { color, size, ...otherProps } = props +const UilTicket = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTicket.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTicket.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTicket; \ No newline at end of file diff --git a/icons/uil-times-circle.js b/icons/uil-times-circle.js index 4fcfa94f..cb7cf2bd 100644 --- a/icons/uil-times-circle.js +++ b/icons/uil-times-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTimesCircle = (props) => { - const { color, size, ...otherProps } = props +const UilTimesCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTimesCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTimesCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTimesCircle; \ No newline at end of file diff --git a/icons/uil-times-square.js b/icons/uil-times-square.js index 1852ebe6..14822fbc 100644 --- a/icons/uil-times-square.js +++ b/icons/uil-times-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTimesSquare = (props) => { - const { color, size, ...otherProps } = props +const UilTimesSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTimesSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTimesSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTimesSquare; \ No newline at end of file diff --git a/icons/uil-times.js b/icons/uil-times.js index a28a3af5..6cbf4349 100644 --- a/icons/uil-times.js +++ b/icons/uil-times.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTimes = (props) => { - const { color, size, ...otherProps } = props +const UilTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTimes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTimes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTimes; \ No newline at end of file diff --git a/icons/uil-toggle-off.js b/icons/uil-toggle-off.js index 3d9c32db..916ffe8c 100644 --- a/icons/uil-toggle-off.js +++ b/icons/uil-toggle-off.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilToggleOff = (props) => { - const { color, size, ...otherProps } = props +const UilToggleOff = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilToggleOff.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilToggleOff.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilToggleOff; \ No newline at end of file diff --git a/icons/uil-toggle-on.js b/icons/uil-toggle-on.js index 34ffe084..b2a69410 100644 --- a/icons/uil-toggle-on.js +++ b/icons/uil-toggle-on.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilToggleOn = (props) => { - const { color, size, ...otherProps } = props +const UilToggleOn = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilToggleOn.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilToggleOn.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilToggleOn; \ No newline at end of file diff --git a/icons/uil-toilet-paper.js b/icons/uil-toilet-paper.js index cb536754..d65c6f74 100644 --- a/icons/uil-toilet-paper.js +++ b/icons/uil-toilet-paper.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilToiletPaper = (props) => { - const { color, size, ...otherProps } = props +const UilToiletPaper = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilToiletPaper.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilToiletPaper.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilToiletPaper; \ No newline at end of file diff --git a/icons/uil-top-arrow-from-top.js b/icons/uil-top-arrow-from-top.js index aadf108c..7d4a3b5a 100644 --- a/icons/uil-top-arrow-from-top.js +++ b/icons/uil-top-arrow-from-top.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTopArrowFromTop = (props) => { - const { color, size, ...otherProps } = props +const UilTopArrowFromTop = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTopArrowFromTop.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTopArrowFromTop.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTopArrowFromTop; \ No newline at end of file diff --git a/icons/uil-top-arrow-to-top.js b/icons/uil-top-arrow-to-top.js index 013526b6..55ce0287 100644 --- a/icons/uil-top-arrow-to-top.js +++ b/icons/uil-top-arrow-to-top.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTopArrowToTop = (props) => { - const { color, size, ...otherProps } = props +const UilTopArrowToTop = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTopArrowToTop.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTopArrowToTop.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTopArrowToTop; \ No newline at end of file diff --git a/icons/uil-tornado.js b/icons/uil-tornado.js index fb1bc5fa..08b8ab1c 100644 --- a/icons/uil-tornado.js +++ b/icons/uil-tornado.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTornado = (props) => { - const { color, size, ...otherProps } = props +const UilTornado = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTornado.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTornado.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTornado; \ No newline at end of file diff --git a/icons/uil-trademark-circle.js b/icons/uil-trademark-circle.js index 077d1a48..7bb49738 100644 --- a/icons/uil-trademark-circle.js +++ b/icons/uil-trademark-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTrademarkCircle = (props) => { - const { color, size, ...otherProps } = props +const UilTrademarkCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTrademarkCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTrademarkCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTrademarkCircle; \ No newline at end of file diff --git a/icons/uil-trademark.js b/icons/uil-trademark.js index e0fa45d9..e1e7d1ab 100644 --- a/icons/uil-trademark.js +++ b/icons/uil-trademark.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTrademark = (props) => { - const { color, size, ...otherProps } = props +const UilTrademark = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTrademark.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTrademark.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTrademark; \ No newline at end of file diff --git a/icons/uil-traffic-barrier.js b/icons/uil-traffic-barrier.js index d1dbeeb7..448e13a2 100644 --- a/icons/uil-traffic-barrier.js +++ b/icons/uil-traffic-barrier.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTrafficBarrier = (props) => { - const { color, size, ...otherProps } = props +const UilTrafficBarrier = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTrafficBarrier.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTrafficBarrier.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTrafficBarrier; \ No newline at end of file diff --git a/icons/uil-traffic-light.js b/icons/uil-traffic-light.js index 44e0db9f..47fe65d8 100644 --- a/icons/uil-traffic-light.js +++ b/icons/uil-traffic-light.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTrafficLight = (props) => { - const { color, size, ...otherProps } = props +const UilTrafficLight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTrafficLight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTrafficLight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTrafficLight; \ No newline at end of file diff --git a/icons/uil-transaction.js b/icons/uil-transaction.js index 3b0eb081..c4ba6e60 100644 --- a/icons/uil-transaction.js +++ b/icons/uil-transaction.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTransaction = (props) => { - const { color, size, ...otherProps } = props +const UilTransaction = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTransaction.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTransaction.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTransaction; \ No newline at end of file diff --git a/icons/uil-trash-alt.js b/icons/uil-trash-alt.js index 834e83db..a363a50b 100644 --- a/icons/uil-trash-alt.js +++ b/icons/uil-trash-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTrashAlt = (props) => { - const { color, size, ...otherProps } = props +const UilTrashAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTrashAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTrashAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTrashAlt; \ No newline at end of file diff --git a/icons/uil-trash.js b/icons/uil-trash.js index f1b9758a..19dc5fea 100644 --- a/icons/uil-trash.js +++ b/icons/uil-trash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTrash = (props) => { - const { color, size, ...otherProps } = props +const UilTrash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTrash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTrash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTrash; \ No newline at end of file diff --git a/icons/uil-trees.js b/icons/uil-trees.js index 7c194fb8..1282863c 100644 --- a/icons/uil-trees.js +++ b/icons/uil-trees.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTrees = (props) => { - const { color, size, ...otherProps } = props +const UilTrees = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTrees.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTrees.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTrees; \ No newline at end of file diff --git a/icons/uil-triangle.js b/icons/uil-triangle.js index ced5245f..2606fcba 100644 --- a/icons/uil-triangle.js +++ b/icons/uil-triangle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTriangle = (props) => { - const { color, size, ...otherProps } = props +const UilTriangle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTriangle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTriangle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTriangle; \ No newline at end of file diff --git a/icons/uil-trophy.js b/icons/uil-trophy.js index a4712873..bef5b15c 100644 --- a/icons/uil-trophy.js +++ b/icons/uil-trophy.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTrophy = (props) => { - const { color, size, ...otherProps } = props +const UilTrophy = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTrophy.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTrophy.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTrophy; \ No newline at end of file diff --git a/icons/uil-trowel.js b/icons/uil-trowel.js index 3012d6cb..ad447a09 100644 --- a/icons/uil-trowel.js +++ b/icons/uil-trowel.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTrowel = (props) => { - const { color, size, ...otherProps } = props +const UilTrowel = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTrowel.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTrowel.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTrowel; \ No newline at end of file diff --git a/icons/uil-truck-loading.js b/icons/uil-truck-loading.js index a50daf12..f800151c 100644 --- a/icons/uil-truck-loading.js +++ b/icons/uil-truck-loading.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTruckLoading = (props) => { - const { color, size, ...otherProps } = props +const UilTruckLoading = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTruckLoading.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTruckLoading.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTruckLoading; \ No newline at end of file diff --git a/icons/uil-truck.js b/icons/uil-truck.js index 84d6efa9..5058829c 100644 --- a/icons/uil-truck.js +++ b/icons/uil-truck.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTruck = (props) => { - const { color, size, ...otherProps } = props +const UilTruck = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTruck.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTruck.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTruck; \ No newline at end of file diff --git a/icons/uil-tumblr-alt.js b/icons/uil-tumblr-alt.js index 8b863ece..d27b03ef 100644 --- a/icons/uil-tumblr-alt.js +++ b/icons/uil-tumblr-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTumblrAlt = (props) => { - const { color, size, ...otherProps } = props +const UilTumblrAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTumblrAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTumblrAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTumblrAlt; \ No newline at end of file diff --git a/icons/uil-tumblr-square.js b/icons/uil-tumblr-square.js index 1c46a14c..3cdf6e98 100644 --- a/icons/uil-tumblr-square.js +++ b/icons/uil-tumblr-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTumblrSquare = (props) => { - const { color, size, ...otherProps } = props +const UilTumblrSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTumblrSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTumblrSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTumblrSquare; \ No newline at end of file diff --git a/icons/uil-tumblr.js b/icons/uil-tumblr.js index c42de3a6..5d57f06f 100644 --- a/icons/uil-tumblr.js +++ b/icons/uil-tumblr.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTumblr = (props) => { - const { color, size, ...otherProps } = props +const UilTumblr = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTumblr.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTumblr.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTumblr; \ No newline at end of file diff --git a/icons/uil-tv-retro-slash.js b/icons/uil-tv-retro-slash.js index 3a175d32..d8bb5ae0 100644 --- a/icons/uil-tv-retro-slash.js +++ b/icons/uil-tv-retro-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTvRetroSlash = (props) => { - const { color, size, ...otherProps } = props +const UilTvRetroSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTvRetroSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTvRetroSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTvRetroSlash; \ No newline at end of file diff --git a/icons/uil-tv-retro.js b/icons/uil-tv-retro.js index 8bee4d9c..85d05629 100644 --- a/icons/uil-tv-retro.js +++ b/icons/uil-tv-retro.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTvRetro = (props) => { - const { color, size, ...otherProps } = props +const UilTvRetro = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTvRetro.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTvRetro.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTvRetro; \ No newline at end of file diff --git a/icons/uil-twitter-alt.js b/icons/uil-twitter-alt.js index 7ccfce6d..70e65afc 100644 --- a/icons/uil-twitter-alt.js +++ b/icons/uil-twitter-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTwitterAlt = (props) => { - const { color, size, ...otherProps } = props +const UilTwitterAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTwitterAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTwitterAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTwitterAlt; \ No newline at end of file diff --git a/icons/uil-twitter.js b/icons/uil-twitter.js index 86292672..e73ee5c3 100644 --- a/icons/uil-twitter.js +++ b/icons/uil-twitter.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilTwitter = (props) => { - const { color, size, ...otherProps } = props +const UilTwitter = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilTwitter.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilTwitter.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilTwitter; \ No newline at end of file diff --git a/icons/uil-umbrella.js b/icons/uil-umbrella.js index 4079e92e..6cf1a458 100644 --- a/icons/uil-umbrella.js +++ b/icons/uil-umbrella.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUmbrella = (props) => { - const { color, size, ...otherProps } = props +const UilUmbrella = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUmbrella.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUmbrella.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUmbrella; \ No newline at end of file diff --git a/icons/uil-unamused.js b/icons/uil-unamused.js index 9512e244..b98943b9 100644 --- a/icons/uil-unamused.js +++ b/icons/uil-unamused.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUnamused = (props) => { - const { color, size, ...otherProps } = props +const UilUnamused = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUnamused.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUnamused.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUnamused; \ No newline at end of file diff --git a/icons/uil-underline.js b/icons/uil-underline.js index b57ac383..38158247 100644 --- a/icons/uil-underline.js +++ b/icons/uil-underline.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUnderline = (props) => { - const { color, size, ...otherProps } = props +const UilUnderline = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUnderline.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUnderline.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUnderline; \ No newline at end of file diff --git a/icons/uil-university.js b/icons/uil-university.js index 80c10c8c..006049e7 100644 --- a/icons/uil-university.js +++ b/icons/uil-university.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUniversity = (props) => { - const { color, size, ...otherProps } = props +const UilUniversity = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUniversity.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUniversity.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUniversity; \ No newline at end of file diff --git a/icons/uil-unlock-alt.js b/icons/uil-unlock-alt.js index 8cd97cdc..c401b6cd 100644 --- a/icons/uil-unlock-alt.js +++ b/icons/uil-unlock-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUnlockAlt = (props) => { - const { color, size, ...otherProps } = props +const UilUnlockAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUnlockAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUnlockAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUnlockAlt; \ No newline at end of file diff --git a/icons/uil-unlock.js b/icons/uil-unlock.js index 02418cf0..b3702b9f 100644 --- a/icons/uil-unlock.js +++ b/icons/uil-unlock.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUnlock = (props) => { - const { color, size, ...otherProps } = props +const UilUnlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUnlock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUnlock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUnlock; \ No newline at end of file diff --git a/icons/uil-upload-alt.js b/icons/uil-upload-alt.js index d4d5ab0e..e9102d47 100644 --- a/icons/uil-upload-alt.js +++ b/icons/uil-upload-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUploadAlt = (props) => { - const { color, size, ...otherProps } = props +const UilUploadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUploadAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUploadAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUploadAlt; \ No newline at end of file diff --git a/icons/uil-upload.js b/icons/uil-upload.js index 12e4f762..3a0b4ed0 100644 --- a/icons/uil-upload.js +++ b/icons/uil-upload.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUpload = (props) => { - const { color, size, ...otherProps } = props +const UilUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUpload.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUpload.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUpload; \ No newline at end of file diff --git a/icons/uil-usd-circle.js b/icons/uil-usd-circle.js index 0475b68b..645b1495 100644 --- a/icons/uil-usd-circle.js +++ b/icons/uil-usd-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUsdCircle = (props) => { - const { color, size, ...otherProps } = props +const UilUsdCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUsdCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUsdCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUsdCircle; \ No newline at end of file diff --git a/icons/uil-usd-square.js b/icons/uil-usd-square.js index 5f0b0fc6..1b756965 100644 --- a/icons/uil-usd-square.js +++ b/icons/uil-usd-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUsdSquare = (props) => { - const { color, size, ...otherProps } = props +const UilUsdSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUsdSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUsdSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUsdSquare; \ No newline at end of file diff --git a/icons/uil-user-arrows.js b/icons/uil-user-arrows.js index 5e02c7b0..b16a25d5 100644 --- a/icons/uil-user-arrows.js +++ b/icons/uil-user-arrows.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUserArrows = (props) => { - const { color, size, ...otherProps } = props +const UilUserArrows = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUserArrows.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUserArrows.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUserArrows; \ No newline at end of file diff --git a/icons/uil-user-check.js b/icons/uil-user-check.js index 48134b26..a9388448 100644 --- a/icons/uil-user-check.js +++ b/icons/uil-user-check.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUserCheck = (props) => { - const { color, size, ...otherProps } = props +const UilUserCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUserCheck.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUserCheck.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUserCheck; \ No newline at end of file diff --git a/icons/uil-user-circle.js b/icons/uil-user-circle.js index 6db94b2e..03981188 100644 --- a/icons/uil-user-circle.js +++ b/icons/uil-user-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUserCircle = (props) => { - const { color, size, ...otherProps } = props +const UilUserCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUserCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUserCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUserCircle; \ No newline at end of file diff --git a/icons/uil-user-exclamation.js b/icons/uil-user-exclamation.js index 832d2ee1..d9237c69 100644 --- a/icons/uil-user-exclamation.js +++ b/icons/uil-user-exclamation.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUserExclamation = (props) => { - const { color, size, ...otherProps } = props +const UilUserExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUserExclamation.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUserExclamation.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUserExclamation; \ No newline at end of file diff --git a/icons/uil-user-location.js b/icons/uil-user-location.js index 0b1aae93..0d15c0c8 100644 --- a/icons/uil-user-location.js +++ b/icons/uil-user-location.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUserLocation = (props) => { - const { color, size, ...otherProps } = props +const UilUserLocation = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUserLocation.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUserLocation.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUserLocation; \ No newline at end of file diff --git a/icons/uil-user-md.js b/icons/uil-user-md.js index 65f4a19d..87aa07e5 100644 --- a/icons/uil-user-md.js +++ b/icons/uil-user-md.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUserMd = (props) => { - const { color, size, ...otherProps } = props +const UilUserMd = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUserMd.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUserMd.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUserMd; \ No newline at end of file diff --git a/icons/uil-user-minus.js b/icons/uil-user-minus.js index adbb4df0..5219c339 100644 --- a/icons/uil-user-minus.js +++ b/icons/uil-user-minus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUserMinus = (props) => { - const { color, size, ...otherProps } = props +const UilUserMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUserMinus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUserMinus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUserMinus; \ No newline at end of file diff --git a/icons/uil-user-nurse.js b/icons/uil-user-nurse.js index 81bedf63..9d84919f 100644 --- a/icons/uil-user-nurse.js +++ b/icons/uil-user-nurse.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUserNurse = (props) => { - const { color, size, ...otherProps } = props +const UilUserNurse = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUserNurse.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUserNurse.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUserNurse; \ No newline at end of file diff --git a/icons/uil-user-plus.js b/icons/uil-user-plus.js index 39d05f47..c4a4636a 100644 --- a/icons/uil-user-plus.js +++ b/icons/uil-user-plus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUserPlus = (props) => { - const { color, size, ...otherProps } = props +const UilUserPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUserPlus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUserPlus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUserPlus; \ No newline at end of file diff --git a/icons/uil-user-square.js b/icons/uil-user-square.js index 1fdfb787..3eca59a5 100644 --- a/icons/uil-user-square.js +++ b/icons/uil-user-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUserSquare = (props) => { - const { color, size, ...otherProps } = props +const UilUserSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUserSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUserSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUserSquare; \ No newline at end of file diff --git a/icons/uil-user-times.js b/icons/uil-user-times.js index 7d46ce1b..ae4fee2f 100644 --- a/icons/uil-user-times.js +++ b/icons/uil-user-times.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUserTimes = (props) => { - const { color, size, ...otherProps } = props +const UilUserTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUserTimes.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUserTimes.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUserTimes; \ No newline at end of file diff --git a/icons/uil-user.js b/icons/uil-user.js index d1a29c02..70c92fe4 100644 --- a/icons/uil-user.js +++ b/icons/uil-user.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUser = (props) => { - const { color, size, ...otherProps } = props +const UilUser = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUser.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUser.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUser; \ No newline at end of file diff --git a/icons/uil-users-alt.js b/icons/uil-users-alt.js index 87ed0e51..4922b66d 100644 --- a/icons/uil-users-alt.js +++ b/icons/uil-users-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUsersAlt = (props) => { - const { color, size, ...otherProps } = props +const UilUsersAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUsersAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUsersAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUsersAlt; \ No newline at end of file diff --git a/icons/uil-utensils-alt.js b/icons/uil-utensils-alt.js index c9167bd0..fda17354 100644 --- a/icons/uil-utensils-alt.js +++ b/icons/uil-utensils-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUtensilsAlt = (props) => { - const { color, size, ...otherProps } = props +const UilUtensilsAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUtensilsAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUtensilsAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUtensilsAlt; \ No newline at end of file diff --git a/icons/uil-utensils.js b/icons/uil-utensils.js index fa6f73d6..f3a2acce 100644 --- a/icons/uil-utensils.js +++ b/icons/uil-utensils.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilUtensils = (props) => { - const { color, size, ...otherProps } = props +const UilUtensils = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilUtensils.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilUtensils.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilUtensils; \ No newline at end of file diff --git a/icons/uil-vector-square-alt.js b/icons/uil-vector-square-alt.js index 2d0d6b36..5feb4d8e 100644 --- a/icons/uil-vector-square-alt.js +++ b/icons/uil-vector-square-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVectorSquareAlt = (props) => { - const { color, size, ...otherProps } = props +const UilVectorSquareAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVectorSquareAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVectorSquareAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVectorSquareAlt; \ No newline at end of file diff --git a/icons/uil-vector-square.js b/icons/uil-vector-square.js index ea6633e6..554f789f 100644 --- a/icons/uil-vector-square.js +++ b/icons/uil-vector-square.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVectorSquare = (props) => { - const { color, size, ...otherProps } = props +const UilVectorSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVectorSquare.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVectorSquare.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVectorSquare; \ No newline at end of file diff --git a/icons/uil-venus.js b/icons/uil-venus.js index e5414b6b..9ed80ef0 100644 --- a/icons/uil-venus.js +++ b/icons/uil-venus.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVenus = (props) => { - const { color, size, ...otherProps } = props +const UilVenus = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVenus.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVenus.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVenus; \ No newline at end of file diff --git a/icons/uil-vertical-align-bottom.js b/icons/uil-vertical-align-bottom.js index e56cea71..124c1309 100644 --- a/icons/uil-vertical-align-bottom.js +++ b/icons/uil-vertical-align-bottom.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVerticalAlignBottom = (props) => { - const { color, size, ...otherProps } = props +const UilVerticalAlignBottom = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVerticalAlignBottom.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVerticalAlignBottom.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVerticalAlignBottom; \ No newline at end of file diff --git a/icons/uil-vertical-align-center.js b/icons/uil-vertical-align-center.js index f69b4cac..e79a409c 100644 --- a/icons/uil-vertical-align-center.js +++ b/icons/uil-vertical-align-center.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVerticalAlignCenter = (props) => { - const { color, size, ...otherProps } = props +const UilVerticalAlignCenter = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVerticalAlignCenter.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVerticalAlignCenter.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVerticalAlignCenter; \ No newline at end of file diff --git a/icons/uil-vertical-align-top.js b/icons/uil-vertical-align-top.js index 7ff2d50b..eb425302 100644 --- a/icons/uil-vertical-align-top.js +++ b/icons/uil-vertical-align-top.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVerticalAlignTop = (props) => { - const { color, size, ...otherProps } = props +const UilVerticalAlignTop = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVerticalAlignTop.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVerticalAlignTop.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVerticalAlignTop; \ No newline at end of file diff --git a/icons/uil-vertical-distribute-bottom.js b/icons/uil-vertical-distribute-bottom.js index 42e2d153..c50961b2 100644 --- a/icons/uil-vertical-distribute-bottom.js +++ b/icons/uil-vertical-distribute-bottom.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVerticalDistributeBottom = (props) => { - const { color, size, ...otherProps } = props +const UilVerticalDistributeBottom = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVerticalDistributeBottom.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVerticalDistributeBottom.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVerticalDistributeBottom; \ No newline at end of file diff --git a/icons/uil-vertical-distribution-center.js b/icons/uil-vertical-distribution-center.js index 8cfbf86b..ad4ee463 100644 --- a/icons/uil-vertical-distribution-center.js +++ b/icons/uil-vertical-distribution-center.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVerticalDistributionCenter = (props) => { - const { color, size, ...otherProps } = props +const UilVerticalDistributionCenter = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVerticalDistributionCenter.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVerticalDistributionCenter.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVerticalDistributionCenter; \ No newline at end of file diff --git a/icons/uil-vertical-distribution-top.js b/icons/uil-vertical-distribution-top.js index 86a971b4..29357676 100644 --- a/icons/uil-vertical-distribution-top.js +++ b/icons/uil-vertical-distribution-top.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVerticalDistributionTop = (props) => { - const { color, size, ...otherProps } = props +const UilVerticalDistributionTop = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVerticalDistributionTop.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVerticalDistributionTop.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVerticalDistributionTop; \ No newline at end of file diff --git a/icons/uil-video-question.js b/icons/uil-video-question.js index d4affe69..140a68f1 100644 --- a/icons/uil-video-question.js +++ b/icons/uil-video-question.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVideoQuestion = (props) => { - const { color, size, ...otherProps } = props +const UilVideoQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVideoQuestion.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVideoQuestion.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVideoQuestion; \ No newline at end of file diff --git a/icons/uil-video-slash.js b/icons/uil-video-slash.js index fd5f0218..fb12cb4f 100644 --- a/icons/uil-video-slash.js +++ b/icons/uil-video-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVideoSlash = (props) => { - const { color, size, ...otherProps } = props +const UilVideoSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVideoSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVideoSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVideoSlash; \ No newline at end of file diff --git a/icons/uil-video.js b/icons/uil-video.js index 269ccb1f..0df489fb 100644 --- a/icons/uil-video.js +++ b/icons/uil-video.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVideo = (props) => { - const { color, size, ...otherProps } = props +const UilVideo = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVideo.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVideo.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVideo; \ No newline at end of file diff --git a/icons/uil-virus-slash.js b/icons/uil-virus-slash.js index cb98b6fe..56a83da5 100644 --- a/icons/uil-virus-slash.js +++ b/icons/uil-virus-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVirusSlash = (props) => { - const { color, size, ...otherProps } = props +const UilVirusSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVirusSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVirusSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVirusSlash; \ No newline at end of file diff --git a/icons/uil-visual-studio.js b/icons/uil-visual-studio.js index 137211a3..c2ae49d1 100644 --- a/icons/uil-visual-studio.js +++ b/icons/uil-visual-studio.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVisualStudio = (props) => { - const { color, size, ...otherProps } = props +const UilVisualStudio = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVisualStudio.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVisualStudio.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVisualStudio; \ No newline at end of file diff --git a/icons/uil-vk-alt.js b/icons/uil-vk-alt.js index f4aee06d..5ed8c761 100644 --- a/icons/uil-vk-alt.js +++ b/icons/uil-vk-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVkAlt = (props) => { - const { color, size, ...otherProps } = props +const UilVkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVkAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVkAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVkAlt; \ No newline at end of file diff --git a/icons/uil-vk.js b/icons/uil-vk.js index 44a8036d..36ca47f8 100644 --- a/icons/uil-vk.js +++ b/icons/uil-vk.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVk = (props) => { - const { color, size, ...otherProps } = props +const UilVk = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVk.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVk.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVk; \ No newline at end of file diff --git a/icons/uil-voicemail-rectangle.js b/icons/uil-voicemail-rectangle.js index 7e24585a..30f15a8c 100644 --- a/icons/uil-voicemail-rectangle.js +++ b/icons/uil-voicemail-rectangle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVoicemailRectangle = (props) => { - const { color, size, ...otherProps } = props +const UilVoicemailRectangle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVoicemailRectangle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVoicemailRectangle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVoicemailRectangle; \ No newline at end of file diff --git a/icons/uil-voicemail.js b/icons/uil-voicemail.js index 07d55fb3..74bef8da 100644 --- a/icons/uil-voicemail.js +++ b/icons/uil-voicemail.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVoicemail = (props) => { - const { color, size, ...otherProps } = props +const UilVoicemail = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVoicemail.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVoicemail.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVoicemail; \ No newline at end of file diff --git a/icons/uil-volleyball.js b/icons/uil-volleyball.js index 85ccb231..6d589b7b 100644 --- a/icons/uil-volleyball.js +++ b/icons/uil-volleyball.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVolleyball = (props) => { - const { color, size, ...otherProps } = props +const UilVolleyball = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVolleyball.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVolleyball.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVolleyball; \ No newline at end of file diff --git a/icons/uil-volume-down.js b/icons/uil-volume-down.js index 74dcbbfb..5b5cb29a 100644 --- a/icons/uil-volume-down.js +++ b/icons/uil-volume-down.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVolumeDown = (props) => { - const { color, size, ...otherProps } = props +const UilVolumeDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVolumeDown.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVolumeDown.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVolumeDown; \ No newline at end of file diff --git a/icons/uil-volume-mute.js b/icons/uil-volume-mute.js index f4467920..1f8a166d 100644 --- a/icons/uil-volume-mute.js +++ b/icons/uil-volume-mute.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVolumeMute = (props) => { - const { color, size, ...otherProps } = props +const UilVolumeMute = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVolumeMute.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVolumeMute.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVolumeMute; \ No newline at end of file diff --git a/icons/uil-volume-off.js b/icons/uil-volume-off.js index 9feb1470..5be5b6df 100644 --- a/icons/uil-volume-off.js +++ b/icons/uil-volume-off.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVolumeOff = (props) => { - const { color, size, ...otherProps } = props +const UilVolumeOff = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVolumeOff.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVolumeOff.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVolumeOff; \ No newline at end of file diff --git a/icons/uil-volume-up.js b/icons/uil-volume-up.js index 73d65b7e..fbbbebbd 100644 --- a/icons/uil-volume-up.js +++ b/icons/uil-volume-up.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVolumeUp = (props) => { - const { color, size, ...otherProps } = props +const UilVolumeUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVolumeUp.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVolumeUp.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVolumeUp; \ No newline at end of file diff --git a/icons/uil-volume.js b/icons/uil-volume.js index a6cc88dd..dc1df805 100644 --- a/icons/uil-volume.js +++ b/icons/uil-volume.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVolume = (props) => { - const { color, size, ...otherProps } = props +const UilVolume = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVolume.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVolume.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVolume; \ No newline at end of file diff --git a/icons/uil-vuejs-alt.js b/icons/uil-vuejs-alt.js index 85b30056..de7b3800 100644 --- a/icons/uil-vuejs-alt.js +++ b/icons/uil-vuejs-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVuejsAlt = (props) => { - const { color, size, ...otherProps } = props +const UilVuejsAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVuejsAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVuejsAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVuejsAlt; \ No newline at end of file diff --git a/icons/uil-vuejs.js b/icons/uil-vuejs.js index 7b12ccfe..c4246ae0 100644 --- a/icons/uil-vuejs.js +++ b/icons/uil-vuejs.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilVuejs = (props) => { - const { color, size, ...otherProps } = props +const UilVuejs = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilVuejs.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilVuejs.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilVuejs; \ No newline at end of file diff --git a/icons/uil-wall.js b/icons/uil-wall.js index fd93c536..6ef28c4e 100644 --- a/icons/uil-wall.js +++ b/icons/uil-wall.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWall = (props) => { - const { color, size, ...otherProps } = props +const UilWall = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWall.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWall.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWall; \ No newline at end of file diff --git a/icons/uil-wallet.js b/icons/uil-wallet.js index daa6d33c..7b3d7168 100644 --- a/icons/uil-wallet.js +++ b/icons/uil-wallet.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWallet = (props) => { - const { color, size, ...otherProps } = props +const UilWallet = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWallet.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWallet.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWallet; \ No newline at end of file diff --git a/icons/uil-watch-alt.js b/icons/uil-watch-alt.js index ade43034..67d7ae73 100644 --- a/icons/uil-watch-alt.js +++ b/icons/uil-watch-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWatchAlt = (props) => { - const { color, size, ...otherProps } = props +const UilWatchAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWatchAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWatchAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWatchAlt; \ No newline at end of file diff --git a/icons/uil-watch.js b/icons/uil-watch.js index 415808c1..ac342f17 100644 --- a/icons/uil-watch.js +++ b/icons/uil-watch.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWatch = (props) => { - const { color, size, ...otherProps } = props +const UilWatch = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWatch.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWatch.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWatch; \ No newline at end of file diff --git a/icons/uil-water-drop-slash.js b/icons/uil-water-drop-slash.js index 18c8189e..79a27af8 100644 --- a/icons/uil-water-drop-slash.js +++ b/icons/uil-water-drop-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWaterDropSlash = (props) => { - const { color, size, ...otherProps } = props +const UilWaterDropSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWaterDropSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWaterDropSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWaterDropSlash; \ No newline at end of file diff --git a/icons/uil-water-glass.js b/icons/uil-water-glass.js index aac2fb9f..a8d3f2ff 100644 --- a/icons/uil-water-glass.js +++ b/icons/uil-water-glass.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWaterGlass = (props) => { - const { color, size, ...otherProps } = props +const UilWaterGlass = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWaterGlass.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWaterGlass.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWaterGlass; \ No newline at end of file diff --git a/icons/uil-water.js b/icons/uil-water.js index 8aa04667..dcf7d4eb 100644 --- a/icons/uil-water.js +++ b/icons/uil-water.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWater = (props) => { - const { color, size, ...otherProps } = props +const UilWater = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWater.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWater.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWater; \ No newline at end of file diff --git a/icons/uil-web-grid-alt.js b/icons/uil-web-grid-alt.js index 5f2fb823..9f68e61b 100644 --- a/icons/uil-web-grid-alt.js +++ b/icons/uil-web-grid-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWebGridAlt = (props) => { - const { color, size, ...otherProps } = props +const UilWebGridAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWebGridAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWebGridAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWebGridAlt; \ No newline at end of file diff --git a/icons/uil-web-grid.js b/icons/uil-web-grid.js index 63d70aa7..c30fe6eb 100644 --- a/icons/uil-web-grid.js +++ b/icons/uil-web-grid.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWebGrid = (props) => { - const { color, size, ...otherProps } = props +const UilWebGrid = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWebGrid.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWebGrid.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWebGrid; \ No newline at end of file diff --git a/icons/uil-web-section-alt.js b/icons/uil-web-section-alt.js index d7ced9fd..047edc78 100644 --- a/icons/uil-web-section-alt.js +++ b/icons/uil-web-section-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWebSectionAlt = (props) => { - const { color, size, ...otherProps } = props +const UilWebSectionAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWebSectionAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWebSectionAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWebSectionAlt; \ No newline at end of file diff --git a/icons/uil-web-section.js b/icons/uil-web-section.js index 9649f95b..574203a3 100644 --- a/icons/uil-web-section.js +++ b/icons/uil-web-section.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWebSection = (props) => { - const { color, size, ...otherProps } = props +const UilWebSection = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWebSection.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWebSection.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWebSection; \ No newline at end of file diff --git a/icons/uil-webcam.js b/icons/uil-webcam.js index 5b608cea..7246ed6e 100644 --- a/icons/uil-webcam.js +++ b/icons/uil-webcam.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWebcam = (props) => { - const { color, size, ...otherProps } = props +const UilWebcam = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWebcam.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWebcam.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWebcam; \ No newline at end of file diff --git a/icons/uil-weight.js b/icons/uil-weight.js index 0a8be73e..50516e89 100644 --- a/icons/uil-weight.js +++ b/icons/uil-weight.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWeight = (props) => { - const { color, size, ...otherProps } = props +const UilWeight = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWeight.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWeight.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWeight; \ No newline at end of file diff --git a/icons/uil-whatsapp-alt.js b/icons/uil-whatsapp-alt.js index 265a2a65..651616cc 100644 --- a/icons/uil-whatsapp-alt.js +++ b/icons/uil-whatsapp-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWhatsappAlt = (props) => { - const { color, size, ...otherProps } = props +const UilWhatsappAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWhatsappAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWhatsappAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWhatsappAlt; \ No newline at end of file diff --git a/icons/uil-whatsapp.js b/icons/uil-whatsapp.js index b378c257..48a0916f 100644 --- a/icons/uil-whatsapp.js +++ b/icons/uil-whatsapp.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWhatsapp = (props) => { - const { color, size, ...otherProps } = props +const UilWhatsapp = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWhatsapp.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWhatsapp.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWhatsapp; \ No newline at end of file diff --git a/icons/uil-wheel-barrow.js b/icons/uil-wheel-barrow.js index 8767f373..3b25d97a 100644 --- a/icons/uil-wheel-barrow.js +++ b/icons/uil-wheel-barrow.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWheelBarrow = (props) => { - const { color, size, ...otherProps } = props +const UilWheelBarrow = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWheelBarrow.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWheelBarrow.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWheelBarrow; \ No newline at end of file diff --git a/icons/uil-wheelchair-alt.js b/icons/uil-wheelchair-alt.js index 5a5e5604..a2452ac8 100644 --- a/icons/uil-wheelchair-alt.js +++ b/icons/uil-wheelchair-alt.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWheelchairAlt = (props) => { - const { color, size, ...otherProps } = props +const UilWheelchairAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWheelchairAlt.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWheelchairAlt.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWheelchairAlt; \ No newline at end of file diff --git a/icons/uil-wheelchair.js b/icons/uil-wheelchair.js index cd99ab32..2fc96d9e 100644 --- a/icons/uil-wheelchair.js +++ b/icons/uil-wheelchair.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWheelchair = (props) => { - const { color, size, ...otherProps } = props +const UilWheelchair = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWheelchair.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWheelchair.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWheelchair; \ No newline at end of file diff --git a/icons/uil-wifi-router.js b/icons/uil-wifi-router.js index fd864f18..97917887 100644 --- a/icons/uil-wifi-router.js +++ b/icons/uil-wifi-router.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWifiRouter = (props) => { - const { color, size, ...otherProps } = props +const UilWifiRouter = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWifiRouter.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWifiRouter.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWifiRouter; \ No newline at end of file diff --git a/icons/uil-wifi-slash.js b/icons/uil-wifi-slash.js index eab8870b..7bde140d 100644 --- a/icons/uil-wifi-slash.js +++ b/icons/uil-wifi-slash.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWifiSlash = (props) => { - const { color, size, ...otherProps } = props +const UilWifiSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWifiSlash.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWifiSlash.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWifiSlash; \ No newline at end of file diff --git a/icons/uil-wifi.js b/icons/uil-wifi.js index 6eccf010..be4dcd72 100644 --- a/icons/uil-wifi.js +++ b/icons/uil-wifi.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWifi = (props) => { - const { color, size, ...otherProps } = props +const UilWifi = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWifi.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWifi.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWifi; \ No newline at end of file diff --git a/icons/uil-wind-moon.js b/icons/uil-wind-moon.js index c7c4a29d..2ee771c8 100644 --- a/icons/uil-wind-moon.js +++ b/icons/uil-wind-moon.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWindMoon = (props) => { - const { color, size, ...otherProps } = props +const UilWindMoon = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWindMoon.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWindMoon.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWindMoon; \ No newline at end of file diff --git a/icons/uil-wind-sun.js b/icons/uil-wind-sun.js index 384f0bb3..fc4a979a 100644 --- a/icons/uil-wind-sun.js +++ b/icons/uil-wind-sun.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWindSun = (props) => { - const { color, size, ...otherProps } = props +const UilWindSun = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWindSun.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWindSun.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWindSun; \ No newline at end of file diff --git a/icons/uil-wind.js b/icons/uil-wind.js index 327db7d4..fd60757f 100644 --- a/icons/uil-wind.js +++ b/icons/uil-wind.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWind = (props) => { - const { color, size, ...otherProps } = props +const UilWind = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWind.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWind.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWind; \ No newline at end of file diff --git a/icons/uil-window-grid.js b/icons/uil-window-grid.js index 981a308f..6aff99a5 100644 --- a/icons/uil-window-grid.js +++ b/icons/uil-window-grid.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWindowGrid = (props) => { - const { color, size, ...otherProps } = props +const UilWindowGrid = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWindowGrid.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWindowGrid.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWindowGrid; \ No newline at end of file diff --git a/icons/uil-window-maximize.js b/icons/uil-window-maximize.js index c9b5e52a..803d5541 100644 --- a/icons/uil-window-maximize.js +++ b/icons/uil-window-maximize.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWindowMaximize = (props) => { - const { color, size, ...otherProps } = props +const UilWindowMaximize = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWindowMaximize.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWindowMaximize.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWindowMaximize; \ No newline at end of file diff --git a/icons/uil-window-section.js b/icons/uil-window-section.js index f66590ba..56206e1f 100644 --- a/icons/uil-window-section.js +++ b/icons/uil-window-section.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWindowSection = (props) => { - const { color, size, ...otherProps } = props +const UilWindowSection = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWindowSection.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWindowSection.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWindowSection; \ No newline at end of file diff --git a/icons/uil-window.js b/icons/uil-window.js index 8582611f..bcbb4638 100644 --- a/icons/uil-window.js +++ b/icons/uil-window.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWindow = (props) => { - const { color, size, ...otherProps } = props +const UilWindow = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWindow.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWindow.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWindow; \ No newline at end of file diff --git a/icons/uil-windows.js b/icons/uil-windows.js index 9fca97ab..0f1668b2 100644 --- a/icons/uil-windows.js +++ b/icons/uil-windows.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWindows = (props) => { - const { color, size, ...otherProps } = props +const UilWindows = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWindows.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWindows.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWindows; \ No newline at end of file diff --git a/icons/uil-windsock.js b/icons/uil-windsock.js index f7e0d7b3..d2679035 100644 --- a/icons/uil-windsock.js +++ b/icons/uil-windsock.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWindsock = (props) => { - const { color, size, ...otherProps } = props +const UilWindsock = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWindsock.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWindsock.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWindsock; \ No newline at end of file diff --git a/icons/uil-windy.js b/icons/uil-windy.js index 41b45f79..b2762332 100644 --- a/icons/uil-windy.js +++ b/icons/uil-windy.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWindy = (props) => { - const { color, size, ...otherProps } = props +const UilWindy = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWindy.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWindy.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWindy; \ No newline at end of file diff --git a/icons/uil-wordpress-simple.js b/icons/uil-wordpress-simple.js index a2938cb9..504317d2 100644 --- a/icons/uil-wordpress-simple.js +++ b/icons/uil-wordpress-simple.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWordpressSimple = (props) => { - const { color, size, ...otherProps } = props +const UilWordpressSimple = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWordpressSimple.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWordpressSimple.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWordpressSimple; \ No newline at end of file diff --git a/icons/uil-wordpress.js b/icons/uil-wordpress.js index c4f4f2e1..f9db746f 100644 --- a/icons/uil-wordpress.js +++ b/icons/uil-wordpress.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWordpress = (props) => { - const { color, size, ...otherProps } = props +const UilWordpress = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWordpress.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWordpress.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWordpress; \ No newline at end of file diff --git a/icons/uil-wrap-text.js b/icons/uil-wrap-text.js index bfc32406..533777e2 100644 --- a/icons/uil-wrap-text.js +++ b/icons/uil-wrap-text.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWrapText = (props) => { - const { color, size, ...otherProps } = props +const UilWrapText = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWrapText.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWrapText.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWrapText; \ No newline at end of file diff --git a/icons/uil-wrench.js b/icons/uil-wrench.js index 7c106458..fff89104 100644 --- a/icons/uil-wrench.js +++ b/icons/uil-wrench.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilWrench = (props) => { - const { color, size, ...otherProps } = props +const UilWrench = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilWrench.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilWrench.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilWrench; \ No newline at end of file diff --git a/icons/uil-x-add.js b/icons/uil-x-add.js index a01f6430..d6f19d42 100644 --- a/icons/uil-x-add.js +++ b/icons/uil-x-add.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilXAdd = (props) => { - const { color, size, ...otherProps } = props +const UilXAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilXAdd.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilXAdd.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilXAdd; \ No newline at end of file diff --git a/icons/uil-x.js b/icons/uil-x.js index 2373922c..cede3326 100644 --- a/icons/uil-x.js +++ b/icons/uil-x.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilX = (props) => { - const { color, size, ...otherProps } = props +const UilX = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilX.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilX.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilX; \ No newline at end of file diff --git a/icons/uil-yen-circle.js b/icons/uil-yen-circle.js index 5de6b249..df82ff84 100644 --- a/icons/uil-yen-circle.js +++ b/icons/uil-yen-circle.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilYenCircle = (props) => { - const { color, size, ...otherProps } = props +const UilYenCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilYenCircle.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilYenCircle.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilYenCircle; \ No newline at end of file diff --git a/icons/uil-yen.js b/icons/uil-yen.js index 8cba5ef7..68194ea3 100644 --- a/icons/uil-yen.js +++ b/icons/uil-yen.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilYen = (props) => { - const { color, size, ...otherProps } = props +const UilYen = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilYen.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilYen.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilYen; \ No newline at end of file diff --git a/icons/uil-yin-yang.js b/icons/uil-yin-yang.js index 45518098..e87460f7 100644 --- a/icons/uil-yin-yang.js +++ b/icons/uil-yin-yang.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilYinYang = (props) => { - const { color, size, ...otherProps } = props +const UilYinYang = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilYinYang.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilYinYang.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilYinYang; \ No newline at end of file diff --git a/icons/uil-youtube.js b/icons/uil-youtube.js index fbf3b77d..d527ae12 100644 --- a/icons/uil-youtube.js +++ b/icons/uil-youtube.js @@ -1,8 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -const UilYoutube = (props) => { - const { color, size, ...otherProps } = props +const UilYoutube = ({ color = 'currentColor', size = '24', ...otherProps }) => { return React.createElement('svg', { xmlns: 'http://www.w3.org/2000/svg', width: size, @@ -20,9 +19,4 @@ UilYoutube.propTypes = { size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; -UilYoutube.defaultProps = { - color: 'currentColor', - size: '24', -}; - export default UilYoutube; \ No newline at end of file