Repository URL to install this package:
|
Version:
2.0.3 ▾
|
import React from 'react';
import { DefaultProps } from 'icons/typings';
interface RefreshIconProps extends DefaultProps {
type?: string;
}
declare class RefreshIcon extends React.PureComponent<RefreshIconProps> {
static defaultProps: {
renderWrapper: (elements: any) => JSX.Element;
type: string;
};
render(): any;
}
export { RefreshIcon };
export default RefreshIcon;