import React from "react"; import PropTypes from "prop-types"; const { BaseControl } = wp.components; export const StaticIcon = ({ id, label, icon }) => ( ); PropTypes.StaticIcon = { id: PropTypes.string.isRequired, label: PropTypes.string, icon: PropTypes.string, };