component-library-mustafa-akagunduz
Version:
Air Command System projesi için geliştirilmiş React component kütüphanesi
16 lines (15 loc) • 382 B
TypeScript
import React from 'react';
import './ComboBox.css';
export interface ComboBoxOption {
value: string;
label: string;
}
export interface ComboBoxProps {
options: ComboBoxOption[];
value?: string;
onChange?: (value: string) => void;
placeholder?: string;
disabled?: boolean;
className?: string;
}
export declare const ComboBox: React.FC<ComboBoxProps>;