// Type definitions for react-fa v4.0.0 // Project: https://github.com/andreypopp/react-fa // Definitions by: Frank Laub // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// import { ComponentClass, Props } from 'react'; interface IconProps extends Props { name: string; className?: string; size?: string; spin?: boolean; rotate?: string; flip?: string; fixedWidth?: boolean; pulse?: boolean; stack?: string; inverse?: boolean; } interface Icon extends ComponentClass { } declare const Icon: Icon; export = Icon;