diff --git a/src/icons/activity.js b/src/icons/activity.js
index e07ff92f..5f8cf800 100644
--- a/src/icons/activity.js
+++ b/src/icons/activity.js
@@ -2,7 +2,7 @@ import React from 'react';
import PropTypes from 'prop-types';
const Activity = props => {
- const { color, size, ...otherProps } = props;
+ const { children, color, size, ...otherProps } = props;
return (
);
};
Activity.propTypes = {
+ children: PropTypes.object,
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Activity.defaultProps = {
+ children: null,
color: 'currentColor',
size: '24',
};
diff --git a/src/icons/airplay.js b/src/icons/airplay.js
index 2905ba9b..cb3a518c 100644
--- a/src/icons/airplay.js
+++ b/src/icons/airplay.js
@@ -2,7 +2,7 @@ import React from 'react';
import PropTypes from 'prop-types';
const Airplay = props => {
- const { color, size, ...otherProps } = props;
+ const { children, color, size, ...otherProps } = props;
return (
@@ -23,11 +24,13 @@ const Airplay = props => {
};
Airplay.propTypes = {
+ children: PropTypes.object,
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Airplay.defaultProps = {
+ children: null,
color: 'currentColor',
size: '24',
};
diff --git a/src/icons/alert-circle.js b/src/icons/alert-circle.js
index e2f8c8fe..f699e435 100644
--- a/src/icons/alert-circle.js
+++ b/src/icons/alert-circle.js
@@ -2,7 +2,7 @@ import React from 'react';
import PropTypes from 'prop-types';
const AlertCircle = props => {
- const { color, size, ...otherProps } = props;
+ const { children, color, size, ...otherProps } = props;
return (