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 * as React from 'react';
import { VectorProps } from './typings';
/**
 * not sure this is really needed, should be done another way...
 */
/**
 * @todo - auto-namespace - like button
 *
 * @see https://css-tricks.com/accessible-svgs/
 */
declare class Vector extends React.PureComponent<VectorProps> {
    static defaultProps: {
        className: string;
    };
    render(): JSX.Element;
}
export { Vector };
export default Vector;