import { Check, BrainCircuit } from "lucide-react"; export default function DatasetToggle({ value, onChange }) { const options = [ { value: "gcc", label: "GCC / UAE", subtitle: "250+ Narrative Samples", flag: "πŸ‡¦πŸ‡ͺ" }, { value: "us", label: "US Accidents", subtitle: "5,000+ Extracted Records", flag: "πŸ‡ΊπŸ‡Έ" } ]; return (
Available Datasets
{options.map((option) => { const isSelected = value === option.value; return ( ); })}
); }