import React from "react" import { ItemsShippedEvent } from "../../../hooks/use-build-timeline" import TruckIcon from "../../fundamentals/icons/truck-icon" import EventContainer from "./event-container" import EventItemContainer from "./event-item-container" type ItemsShippedProps = { event: ItemsShippedEvent } const ItemsShipped: React.FC = ({ event }) => { const title = event.sourceType === "claim" ? "Replacement Items Shipped" : event.sourceType === "exchange" ? "Exchange Items Shipped" : "Items Shipped" const detail = event.locationName ? `Shipped from ${event.locationName}` : undefined const args = { icon: , time: event.time, title: title, children: event.items.map((item, index) => ( )), noNotification: event.noNotification, isFirst: event.first, detail, } return } export default ItemsShipped