mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
# Conflicts: # .gitignore # ajv/ajv.d.ts # angular-material/angular-material.d.ts # angular-protractor/angular-protractor.d.ts # angularjs/angular-tests.ts # angularjs/angular.d.ts # aws-sdk/aws-sdk.d.ts # electron-devtools-installer/electron-devtools-installer-tests.ts # electron-json-storage/electron-json-storage-tests.ts # electron-notifications/electron-notifications.d.ts # electron-notify/electron-notify.d.ts # electron-window-state/electron-window-state.d.ts # electron/electron-prebuilt.d.ts # enzyme/enzyme.d.ts # eventemitter3/eventemitter3-tests.ts # eventemitter3/eventemitter3.d.ts # graphql/graphql.d.ts # highcharts/highcharts.d.ts # immutable/immutable.d.ts # inquirer/inquirer.d.ts # jasmine/jasmine.d.ts # joi/joi.d.ts # jquery.dataTables/jquery.dataTables-tests.ts # jquery.dataTables/jquery.dataTables.d.ts # kafka-node/kafka-node.d.ts # kefir/kefir.d.ts # kendo-ui/kendo-ui.d.ts # koa/koa.d.ts # leaflet/leaflet.d.ts # lodash/lodash.d.ts # mapbox-gl/mapbox-gl.d.ts # material-ui/material-ui.d.ts # menubar/menubar.d.ts # mongodb/mongodb.d.ts # needle/needle-tests.ts # needle/needle.d.ts # noble/noble.d.ts # node/node.d.ts # pegjs/pegjs.d.ts # pixi.js/pixi.js.d.ts # polymer/polymer.d.ts # quill/quill-tests.ts # quill/quill.d.ts # react-bootstrap/react-bootstrap.d.ts # react-fa/react-fa-tests.tsx # react-fa/react-fa.d.ts # react-native/react-native.d.ts # react-select/react-select.d.ts # react/react.d.ts # threejs/three-vrcontrols.d.ts # threejs/three-vreffect.d.ts # toastr/toastr.d.ts # validator/validator.d.ts # webpack/webpack.d.ts # winston/winston.d.ts
35 lines
962 B
TypeScript
35 lines
962 B
TypeScript
// Type definitions for react-fa v4.0.0
|
|
// Project: https://github.com/andreypopp/react-fa
|
|
// Definitions by: Frank Laub <https://github.com/flaub>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="react" />
|
|
|
|
|
|
import { Component, ClassAttributes } from 'react';
|
|
|
|
type IconSize = "lg" | "2x" | "3x" | "4x" | "5x"
|
|
|
|
interface IconProps extends ClassAttributes<Icon> {
|
|
name: string
|
|
className?: string
|
|
size?: IconSize
|
|
rotate?: "45" | "90" | "135" | "180" | "225" | "270" | "315"
|
|
flip?: "horizontal" | "vertical"
|
|
fixedWidth?: boolean
|
|
spin?: boolean
|
|
pulse?: boolean
|
|
stack?: "1x" | "2x"
|
|
inverse?: boolean
|
|
Component?: string | Function
|
|
}
|
|
|
|
export class Icon extends Component<IconProps, {}> {}
|
|
|
|
interface IconStackProps extends ClassAttributes<IconStack> {
|
|
className?: string
|
|
size?: IconSize
|
|
}
|
|
export class IconStack extends Component<IconStackProps, {}> {}
|
|
|
|
export default Icon; |