import React from "react"; import FirstMileIcon from "../icons/FirstMileIcon"; import MidMileIcon from "../icons/MidMileIcon"; import LastMileIcon from "../icons/LastMileIcon"; interface Miles3Props { /** Eyebrow above the heading. Defaults to the original How It Works label. */ eyebrow?: string; /** Section heading. Defaults to the original How It Works copy. */ heading?: string; } export default function Miles3({ eyebrow = "/ How It Works /", heading = "Doormile connects first, mid, and last mile into a seamless end-to-end logistics experience", }: Miles3Props = {}) { return ( <>