'use client'; import Link from 'next/link'; import { Search } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; type AnalysisToolbarProps = { tickerInput: string; currentTicker: string; onTickerInputChange: (value: string) => void; onSubmit: (event: React.FormEvent) => void; onRefresh: () => void; quickLinks: { research: string; filings: string; financials: string; graphing: string; }; onLinkPrefetch?: () => void; }; export function AnalysisToolbar(props: AnalysisToolbarProps) { return (

Company overview

Inspect the latest high-level picture for {props.currentTicker}

props.onTickerInputChange(event.target.value.toUpperCase())} placeholder="Ticker (AAPL)" className="w-full sm:min-w-[180px]" />
Research Filings Financials Graphing
); }