@iobroker/adapter-react
Version:
React classes to develop admin interfaces for ioBroker with react.
12 lines (11 loc) • 420 B
TypeScript
export default IconFx;
declare function IconFx(props: any): JSX.Element;
declare namespace IconFx {
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";