@kbss-cvut/s-forms
Version:
Semantic forms generator and processor
22 lines (21 loc) • 638 B
TypeScript
export default PrefixIcon;
declare class PrefixIcon extends React.Component<any, any, any> {
constructor(props: any);
state: {
prefixes: any;
};
render(): import("react/jsx-runtime").JSX.Element;
}
declare namespace PrefixIcon {
namespace propTypes {
let prefixes: PropTypes.Validator<any[]>;
let children: PropTypes.Validator<PropTypes.ReactElementLike>;
let iconClass: PropTypes.Requireable<string>;
}
namespace defaultProps {
let iconClass_1: string;
export { iconClass_1 as iconClass };
}
}
import React from "react";
import PropTypes from "prop-types";