@iobroker/adapter-react
Version:
React classes to develop admin interfaces for ioBroker with react.
12 lines (11 loc) • 435 B
TypeScript
export default IconAdapter;
declare function IconAdapter(props: any): JSX.Element;
declare namespace IconAdapter {
namespace propTypes {
const onClick: PropTypes.Requireable<(...args: any[]) => any>;
const width: PropTypes.Requireable<string | number>;
const height: PropTypes.Requireable<string | number>;
const className: PropTypes.Requireable<string>;
}
}
import PropTypes from "prop-types";