// Type definitions for react-icon-base 2.1 // Project: https://github.com/gorangajic/react-icon-base#readme // Definitions by: Alexandre Paré , Karol Janyst // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.8 import * as React from "react"; export interface IconBaseProps extends React.SVGProps { size?: string | number; style?: any; color?: string; } export default class IconBaseClass extends React.Component {}