import React from "react" import { ItemsFulfilledEvent } from "../../../hooks/use-build-timeline" import PackageIcon from "../../fundamentals/icons/package-icon" import EventContainer from "./event-container" import EventItemContainer from "./event-item-container" type ItemsFulfilledProps = { event: ItemsFulfilledEvent } const ItemsFulfilled: React.FC = ({ event }) => { const title = event.sourceType === "claim" ? "Replacement Items Fulfilled" : event.sourceType === "exchange" ? "Exchange Items Fulfilled" : "Items Fulfilled" const detail = event.locationName ? `Shipping 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 ItemsFulfilled