airspeeder-flight-indicators-react
Version:
A React + TypeScript porting of react-flight-indicators (https://github.com/skyhop/react-flight-indicators)
11 lines (10 loc) • 343 B
TypeScript
import React from 'react';
export declare type InstrumentProperties = {
showBox?: boolean;
size?: string;
};
declare const Instrument: React.MemoExoticComponent<(props: InstrumentProperties & {
children?: React.ReactNode;
}) => JSX.Element>;
export default Instrument;
export declare const BoxStyle: React.CSSProperties;