import React from 'react'; interface StepGuideProps { steps: { num: number; title: string; desc: string }[]; color: string; } export const StepGuide: React.FC = ({ steps, color }) => { return (
    {steps.map((s, i) => (
  1. {s.num} {i < steps.length - 1 && }

    {s.title}

    {s.desc}

  2. ))}
); }; export default StepGuide;