Skip to content
Snippets Groups Projects
Unverified Commit 69ff0fdc authored by Gustavo Saiani's avatar Gustavo Saiani Committed by GitHub
Browse files

Remove propTypes from WidgetStatusIcon (#23836)

parent 51b9efe6
No related branches found
No related tags found
No related merge requests found
import React from "react";
import PropTypes from "prop-types";
import Icon from "metabase/components/Icon";
const propTypes = {
isFullscreen: PropTypes.bool.isRequired,
hasValue: PropTypes.bool.isRequired,
noReset: PropTypes.bool.isRequired,
noPopover: PropTypes.bool.isRequired,
isFocused: PropTypes.bool.isRequired,
setValue: PropTypes.func.isRequired,
};
type Props = {
isFullscreen: boolean;
hasValue: boolean;
......@@ -77,5 +67,3 @@ function WidgetStatusIcon({
}
export default WidgetStatusIcon;
WidgetStatusIcon.propTypes = propTypes;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment