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 (
);
})}
);
}