import { Check, Database } from "lucide-react"; export default function DatasetToggle({ value, onChange }) { const options = [ { value: "gcc", label: "GCC / UAE", subtitle: "250+ Narrative Samples" }, { value: "us", label: "US Accidents", subtitle: "5,000+ Extracted Records" } ]; return (
Analysis Dataset Track
{options.map((option) => { const isSelected = value === option.value; return ( ); })}
); }