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) 323 B
import React from 'react'; import { InstrumentProperties } from './Instrument'; declare type HeadingIndicatorProperties = InstrumentProperties & { heading?: number; }; declare const HeadingIndicator: React.MemoExoticComponent<(props: HeadingIndicatorProperties) => JSX.Element>; export default HeadingIndicator;