import type { ReactNode } from 'react'; interface FleetSoonPlaceholderProps { icon: ReactNode; kicker: string; title: string; description: string; plannedActions: string[]; } export function FleetSoonPlaceholder({ icon, kicker, title, description, plannedActions, }: FleetSoonPlaceholderProps) { return (
{icon} {kicker}

{title}

{description}

Planned actions
{plannedActions.map((action) => ( {action} ))}
); }