air-command-ui-library
Version:
A React component library for Air Command System with Storybook
22 lines (21 loc) • 661 B
TypeScript
import React from 'react';
export interface ModalField {
label: string;
value: string | number;
}
export interface SimpleCornerModalProps {
isOpen: boolean;
onClose: () => void;
aircraftId: string;
classification: 'FRIENDLY' | 'HOSTILE' | 'NEUTRAL' | 'UNKNOWN';
fields: ModalField[];
onUpdate?: () => void;
onDelete?: () => void;
onShowHistory?: () => void;
isHistoryVisible?: boolean;
}
/**
* Simple Corner Modal - Styled-components olmadan basit versiyon
* Test amaçlı, sorunun styled-components'te olup olmadığını anlamak için
*/
export declare const SimpleCornerModal: React.FC<SimpleCornerModalProps>;