Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import React from 'react';
import { DefaultProps } from 'icons/typings';
interface Props extends DefaultProps {
    fill: string;
    stroke: string;
}
declare class AccountIcon extends React.PureComponent<Props> {
    /**
     * passing the vector props here, since its not consider
     * by the Vector.tsx when we assigning it directly
     * Ex: <Vector width="44px" height="39px" ...>
     */
    static defaultProps: {
        width: string;
        height: string;
        viewBox: string;
        fill: string;
        stroke: string;
    };
    render(): JSX.Element;
}
export { AccountIcon };
export default AccountIcon;