This commit is contained in:
Tom Coleman 2022-09-30 12:07:35 +10:00
parent e52ad1c8ac
commit a27504e7bc
2 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,7 @@
import React from 'react';
import PropTypes from 'prop-types';
const withStyles = (themeFn) => (Comp) => Comp;
const withStyles = () => (Comp) => Comp;
class Alert extends React.Component {
render() {

View File

@ -13,6 +13,7 @@ const iconButton: FC<IProps> = function IconButton(props) {
};
iconButton.propTypes = {
// deepscan-disable-next-line
color: PropTypes.string,
};