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