import type { FormEvent } from "react"; import { Input } from "@/components/ui/input"; import { Button } from "@/components/ui/button"; import { Search } from "lucide-react"; interface StockSearchFormProps { keyword: string; onKeywordChange: (value: string) => void; onSubmit: (e: FormEvent) => void; disabled?: boolean; isLoading?: boolean; } export function StockSearchForm({ keyword, onKeywordChange, onSubmit, disabled, isLoading, }: StockSearchFormProps) { return (
); }