UNPKG

airspeeder-flight-indicators-react

Version:

A React + TypeScript porting of react-flight-indicators (https://github.com/skyhop/react-flight-indicators)

8 lines (7 loc) 289 B
import React from 'react'; import { InstrumentProperties } from './Instrument'; declare type AirspeedProperties = InstrumentProperties & { speed?: number; }; declare const Airspeed: React.MemoExoticComponent<(props: AirspeedProperties) => JSX.Element>; export default Airspeed;