Repository URL to install this package:
|
Version:
0.0.15 ▾
|
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;