Repository URL to install this package:
|
Version:
2.0.4 ▾
|
@skava/ui
/
src
/
components
/
atoms
/
Icons
/
RefreshIcon
/
SingleRefreshIcon
/
SingleRefreshIcon.d.ts
|
|---|
import React from 'react';
import { DefaultProps } from 'icons/typings';
interface Props extends DefaultProps {
}
declare class SingleRefreshIcon extends React.PureComponent<Props> {
static defaultProps: {
width: string;
height: string;
viewBox: string;
};
render(): JSX.Element;
}
export { SingleRefreshIcon };
export default SingleRefreshIcon;