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