Repository URL to install this package:
Version:
0.9.6 ▾
|
import React from 'react';
import { DefaultProps } from 'icons/typings';
interface Props extends DefaultProps {
}
declare class CopyIcon extends React.PureComponent<Props> {
static defaultProps: {
width: string;
height: string;
viewBox: string;
fill: string;
stroke: string;
strokeWidth: string;
};
render(): JSX.Element;
}
export { CopyIcon };
export default CopyIcon;