Repository URL to install this package:
Version:
0.9.6 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
atoms
/
Icons
/
RefreshIcon
/
RefreshIcon.d.ts
|
---|
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;