wix-style-react
Version:
wix-style-react
21 lines • 747 B
TypeScript
export default InfoIcon;
declare function InfoIcon({ dataHook, content, size, tooltipProps, className, }: {
dataHook: any;
content: any;
size?: string | undefined;
tooltipProps: any;
className: any;
}): React.JSX.Element;
declare namespace InfoIcon {
let displayName: string;
namespace propTypes {
let dataHook: PropTypes.Requireable<string>;
let className: PropTypes.Requireable<string>;
let size: PropTypes.Requireable<string>;
let content: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
let tooltipProps: PropTypes.Requireable<PropTypes.InferProps<any>>;
}
}
import React from 'react';
import PropTypes from 'prop-types';
//# sourceMappingURL=InfoIcon.d.ts.map